jakarta.validation-api-3.0.2.pom 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Jakarta Bean Validation API
  4. ~
  5. ~ License: Apache License, Version 2.0
  6. ~ See the license.txt file in the root directory or <http://www.apache.org/licenses/LICENSE-2.0>.
  7. -->
  8. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  9. <modelVersion>4.0.0</modelVersion>
  10. <parent>
  11. <groupId>org.eclipse.ee4j</groupId>
  12. <artifactId>project</artifactId>
  13. <version>1.0.6</version>
  14. </parent>
  15. <groupId>jakarta.validation</groupId>
  16. <artifactId>jakarta.validation-api</artifactId>
  17. <version>3.0.2</version>
  18. <packaging>jar</packaging>
  19. <name>Jakarta Bean Validation API</name>
  20. <url>https://beanvalidation.org</url>
  21. <description>
  22. Jakarta Bean Validation API
  23. </description>
  24. <developers>
  25. <developer>
  26. <id>epbernard</id>
  27. <name>Emmanuel Bernard</name>
  28. <email>emmanuel@hibernate.org</email>
  29. <organization>Red Hat, Inc.</organization>
  30. <url>http://in.relation.to/emmanuel-bernard/</url>
  31. </developer>
  32. <developer>
  33. <id>emmanuelbernard</id>
  34. <name>Emmanuel Bernard</name>
  35. <email>emmanuel@hibernate.org</email>
  36. <organization>Red Hat, Inc.</organization>
  37. <url>http://in.relation.to/emmanuel-bernard/</url>
  38. </developer>
  39. <developer>
  40. <id>hardy.ferentschik</id>
  41. <name>Hardy Ferentschik</name>
  42. <email>hferents@redhat.com</email>
  43. <organization>Red Hat, Inc.</organization>
  44. <url>http://in.relation.to/hardy-ferentschik/</url>
  45. </developer>
  46. <developer>
  47. <id>gunnar.morling</id>
  48. <name>Gunnar Morling</name>
  49. <email>gunnar@hibernate.org</email>
  50. <organization>Red Hat, Inc.</organization>
  51. <url>http://in.relation.to/gunnar-morling/</url>
  52. </developer>
  53. <developer>
  54. <id>guillaume.smet</id>
  55. <name>Guillaume Smet</name>
  56. <email>guillaume.smet@hibernate.org</email>
  57. <organization>Red Hat, Inc.</organization>
  58. <url>http://in.relation.to/guillaume-smet/</url>
  59. </developer>
  60. </developers>
  61. <issueManagement>
  62. <system>JIRA</system>
  63. <url>https://hibernate.atlassian.net/projects/BVAL/</url>
  64. </issueManagement>
  65. <inceptionYear>2007</inceptionYear>
  66. <licenses>
  67. <license>
  68. <name>Apache License 2.0</name>
  69. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  70. </license>
  71. </licenses>
  72. <scm>
  73. <connection>scm:git:git://github.com/eclipse-ee4j/beanvalidation-api.git</connection>
  74. <developerConnection>scm:git:git@github.com:eclipse-ee4j/beanvalidation-api.git</developerConnection>
  75. <url>https://github.com/eclipse-ee4j/beanvalidation-api</url>
  76. <tag>HEAD</tag>
  77. </scm>
  78. <properties>
  79. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  80. </properties>
  81. <dependencies>
  82. <dependency>
  83. <groupId>org.testng</groupId>
  84. <artifactId>testng</artifactId>
  85. <version>6.11</version>
  86. <scope>test</scope>
  87. </dependency>
  88. </dependencies>
  89. <build>
  90. <plugins>
  91. <plugin>
  92. <groupId>org.apache.felix</groupId>
  93. <artifactId>maven-bundle-plugin</artifactId>
  94. <version>3.5.0</version>
  95. <configuration>
  96. <instructions>
  97. <Export-Package>
  98. jakarta.validation.*;version="${project.version}",
  99. </Export-Package>
  100. <!-- Make sure we keep 1.8 compatibility for JavaSE in the manifest -->
  101. <Require-Capability><![CDATA[osgi.ee;filter:="(&(osgi.ee=JavaSE)(version=1.8))"]]></Require-Capability>
  102. </instructions>
  103. </configuration>
  104. <executions>
  105. <execution>
  106. <id>bundle-manifest</id>
  107. <phase>process-classes</phase>
  108. <goals>
  109. <goal>manifest</goal>
  110. </goals>
  111. </execution>
  112. </executions>
  113. </plugin>
  114. <!--
  115. Use the JDK 9+ compiler but with -source 1.8 for all
  116. but the module-info.java file.
  117. -->
  118. <plugin>
  119. <groupId>org.apache.maven.plugins</groupId>
  120. <artifactId>maven-compiler-plugin</artifactId>
  121. <version>3.8.1</version>
  122. <configuration>
  123. <release>9</release>
  124. <compilerArgs>
  125. <arg>-Xlint:all</arg>
  126. </compilerArgs>
  127. <showDeprecation>true</showDeprecation>
  128. <showWarnings>true</showWarnings>
  129. </configuration>
  130. <executions>
  131. <execution>
  132. <id>base-compile</id>
  133. <goals>
  134. <goal>compile</goal>
  135. </goals>
  136. <configuration>
  137. <release>8</release>
  138. <excludes>
  139. <exclude>module-info.java</exclude>
  140. </excludes>
  141. </configuration>
  142. </execution>
  143. </executions>
  144. </plugin>
  145. <plugin>
  146. <groupId>org.apache.maven.plugins</groupId>
  147. <artifactId>maven-surefire-plugin</artifactId>
  148. <version>2.19.1</version>
  149. <configuration>
  150. <forkMode>once</forkMode>
  151. <redirectTestOutputToFile>true</redirectTestOutputToFile>
  152. <includes>
  153. <include>**/*Test.java</include>
  154. </includes>
  155. </configuration>
  156. </plugin>
  157. <plugin>
  158. <groupId>org.apache.maven.plugins</groupId>
  159. <artifactId>maven-jar-plugin</artifactId>
  160. <version>3.0.2</version>
  161. <configuration>
  162. <archive>
  163. <manifestFile>${basedir}/target/classes/META-INF/MANIFEST.MF</manifestFile>
  164. </archive>
  165. </configuration>
  166. </plugin>
  167. <plugin>
  168. <groupId>org.apache.maven.plugins</groupId>
  169. <artifactId>maven-source-plugin</artifactId>
  170. <version>3.0.1</version>
  171. <executions>
  172. <execution>
  173. <id>attach-sources</id>
  174. <goals>
  175. <goal>jar</goal>
  176. </goals>
  177. </execution>
  178. </executions>
  179. </plugin>
  180. <plugin>
  181. <groupId>org.apache.maven.plugins</groupId>
  182. <artifactId>maven-javadoc-plugin</artifactId>
  183. <version>3.3.0</version>
  184. <executions>
  185. <execution>
  186. <id>attach-javadocs</id>
  187. <goals>
  188. <goal>jar</goal>
  189. </goals>
  190. </execution>
  191. </executions>
  192. <configuration>
  193. <source>8</source>
  194. <detectJavaApiLink>false</detectJavaApiLink>
  195. <packagesheader>Jakarta Bean Validation API Packages</packagesheader>
  196. <doctitle>Jakarta Bean Validation API ${project.version}</doctitle>
  197. <windowtitle>Jakarta Bean Validation API ${project.version}</windowtitle>
  198. <bottom><![CDATA[
  199. Comments to: <a href="mailto:bean-validation-dev@eclipse.org">bean-validation-dev@eclipse.org</a>.<br>
  200. Copyright &#169; 2019,2020 Eclipse Foundation.<br>
  201. Use is subject to <a href="{@docRoot}/doc-files/speclicense.html" target="_top">EFSL</a>; this spec is based on material that is licensed under the Apache License, version 2.0.]]>
  202. </bottom>
  203. </configuration>
  204. </plugin>
  205. <plugin>
  206. <groupId>org.apache.maven.plugins</groupId>
  207. <artifactId>maven-install-plugin</artifactId>
  208. <version>2.5.2</version>
  209. </plugin>
  210. <plugin>
  211. <groupId>org.apache.maven.plugins</groupId>
  212. <artifactId>maven-release-plugin</artifactId>
  213. <version>2.5.3</version>
  214. <configuration>
  215. <allowTimestampedSnapshots>true</allowTimestampedSnapshots>
  216. <remoteTagging>true</remoteTagging>
  217. <goals>deploy</goals>
  218. </configuration>
  219. </plugin>
  220. <plugin>
  221. <artifactId>maven-deploy-plugin</artifactId>
  222. <version>3.0.0-M1</version>
  223. </plugin>
  224. <plugin>
  225. <groupId>com.mycila</groupId>
  226. <artifactId>license-maven-plugin</artifactId>
  227. <version>3.0</version>
  228. <configuration>
  229. <header>${project.basedir}/license/license.header</header>
  230. <strictCheck>true</strictCheck>
  231. <headerDefinitions>
  232. <headerDefinition>${project.basedir}/license/java-header-style.xml</headerDefinition>
  233. <headerDefinition>${project.basedir}/license/xml-header-style.xml</headerDefinition>
  234. </headerDefinitions>
  235. <mapping>
  236. <java>JAVA_CLASS_STYLE</java>
  237. <xml>XML_FILE_STYLE</xml>
  238. <xsd>XML_FILE_STYLE</xsd>
  239. </mapping>
  240. <includes>
  241. <include>**/*.java</include>
  242. <include>**/*.xml</include>
  243. <include>**/*.xsd</include>
  244. </includes>
  245. </configuration>
  246. <executions>
  247. <execution>
  248. <id>license-headers</id>
  249. <goals>
  250. <goal>check</goal>
  251. </goals>
  252. </execution>
  253. </executions>
  254. </plugin>
  255. </plugins>
  256. </build>
  257. <profiles>
  258. <profile>
  259. <id>release</id>
  260. <properties>
  261. <createChecksum>true</createChecksum>
  262. </properties>
  263. </profile>
  264. </profiles>
  265. </project>