jakarta.validation-api-2.0.1.pom 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ 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. <groupId>jakarta.validation</groupId>
  11. <artifactId>jakarta.validation-api</artifactId>
  12. <version>2.0.1</version>
  13. <packaging>jar</packaging>
  14. <name>Bean Validation API</name>
  15. <url>http://beanvalidation.org</url>
  16. <description>
  17. Bean Validation API
  18. </description>
  19. <developers>
  20. <developer>
  21. <id>epbernard</id>
  22. <name>Emmanuel Bernard</name>
  23. <email>emmanuel@hibernate.org</email>
  24. <organization>Red Hat, Inc.</organization>
  25. <url>http://in.relation.to/emmanuel-bernard/</url>
  26. </developer>
  27. <developer>
  28. <id>emmanuelbernard</id>
  29. <name>Emmanuel Bernard</name>
  30. <email>emmanuel@hibernate.org</email>
  31. <organization>Red Hat, Inc.</organization>
  32. <url>http://in.relation.to/emmanuel-bernard/</url>
  33. </developer>
  34. <developer>
  35. <id>hardy.ferentschik</id>
  36. <name>Hardy Ferentschik</name>
  37. <email>hferents@redhat.com</email>
  38. <organization>Red Hat, Inc.</organization>
  39. <url>http://in.relation.to/hardy-ferentschik/</url>
  40. </developer>
  41. <developer>
  42. <id>gunnar.morling</id>
  43. <name>Gunnar Morling</name>
  44. <email>gunnar@hibernate.org</email>
  45. <organization>Red Hat, Inc.</organization>
  46. <url>http://in.relation.to/gunnar-morling/</url>
  47. </developer>
  48. <developer>
  49. <id>guillaume.smet</id>
  50. <name>Guillaume Smet</name>
  51. <email>guillaume.smet@hibernate.org</email>
  52. <organization>Red Hat, Inc.</organization>
  53. <url>http://in.relation.to/guillaume-smet/</url>
  54. </developer>
  55. </developers>
  56. <issueManagement>
  57. <system>JIRA</system>
  58. <url>https://hibernate.atlassian.net/projects/BVAL/</url>
  59. </issueManagement>
  60. <inceptionYear>2007</inceptionYear>
  61. <licenses>
  62. <license>
  63. <name>Apache License 2.0</name>
  64. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  65. </license>
  66. </licenses>
  67. <scm>
  68. <connection>scm:git:git://github.com/beanvalidation/beanvalidation-api.git</connection>
  69. <developerConnection>scm:git:git@github.com:beanvalidation/beanvalidation-api.git</developerConnection>
  70. <url>https://github.com/beanvalidation/beanvalidation-api</url>
  71. <tag>HEAD</tag>
  72. </scm>
  73. <distributionManagement>
  74. <repository>
  75. <id>jboss-releases-repository</id>
  76. <name>JBoss Releases Repository</name>
  77. <url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</url>
  78. </repository>
  79. <snapshotRepository>
  80. <id>jboss-snapshots-repository</id>
  81. <name>JBoss Snapshots Repository</name>
  82. <url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url>
  83. </snapshotRepository>
  84. </distributionManagement>
  85. <properties>
  86. <maven.compiler.target>1.8</maven.compiler.target>
  87. <maven.compiler.source>1.8</maven.compiler.source>
  88. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  89. </properties>
  90. <dependencies>
  91. <dependency>
  92. <groupId>org.testng</groupId>
  93. <artifactId>testng</artifactId>
  94. <version>6.9.10</version>
  95. <scope>test</scope>
  96. </dependency>
  97. </dependencies>
  98. <build>
  99. <pluginManagement>
  100. <plugins>
  101. <plugin>
  102. <!--
  103. Creates a report by running "mvn japicmp:cmp"
  104. Note: you need to install the jars before running the japicmp command.
  105. -->
  106. <groupId>com.github.siom79.japicmp</groupId>
  107. <artifactId>japicmp-maven-plugin</artifactId>
  108. <version>0.9.3</version>
  109. <configuration>
  110. <oldVersion>
  111. <dependency>
  112. <groupId>${project.groupId}</groupId>
  113. <artifactId>${project.artifactId}</artifactId>
  114. <version>1.1.0.Final</version>
  115. </dependency>
  116. </oldVersion>
  117. <newVersion>
  118. <file>
  119. <path>${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging}</path>
  120. </file>
  121. </newVersion>
  122. <parameter>
  123. <onlyModified>true</onlyModified>
  124. </parameter>
  125. </configuration>
  126. </plugin>
  127. </plugins>
  128. </pluginManagement>
  129. <plugins>
  130. <plugin>
  131. <groupId>org.apache.felix</groupId>
  132. <artifactId>maven-bundle-plugin</artifactId>
  133. <version>3.2.0</version>
  134. <configuration>
  135. <instructions>
  136. <Export-Package>
  137. javax.validation.*;version="${project.version}",
  138. </Export-Package>
  139. <Automatic-Module-Name>java.validation</Automatic-Module-Name>
  140. </instructions>
  141. </configuration>
  142. <executions>
  143. <execution>
  144. <id>bundle-manifest</id>
  145. <phase>process-classes</phase>
  146. <goals>
  147. <goal>manifest</goal>
  148. </goals>
  149. </execution>
  150. </executions>
  151. </plugin>
  152. <plugin>
  153. <groupId>org.apache.maven.plugins</groupId>
  154. <artifactId>maven-compiler-plugin</artifactId>
  155. <version>3.5.1</version>
  156. </plugin>
  157. <plugin>
  158. <groupId>org.apache.maven.plugins</groupId>
  159. <artifactId>maven-surefire-plugin</artifactId>
  160. <version>2.19.1</version>
  161. <configuration>
  162. <forkMode>once</forkMode>
  163. <redirectTestOutputToFile>true</redirectTestOutputToFile>
  164. <includes>
  165. <include>**/*Test.java</include>
  166. </includes>
  167. </configuration>
  168. </plugin>
  169. <plugin>
  170. <groupId>org.apache.maven.plugins</groupId>
  171. <artifactId>maven-jar-plugin</artifactId>
  172. <version>3.0.2</version>
  173. <configuration>
  174. <archive>
  175. <manifestFile>${basedir}/target/classes/META-INF/MANIFEST.MF</manifestFile>
  176. </archive>
  177. </configuration>
  178. </plugin>
  179. <plugin>
  180. <groupId>org.apache.maven.plugins</groupId>
  181. <artifactId>maven-source-plugin</artifactId>
  182. <version>3.0.1</version>
  183. <executions>
  184. <execution>
  185. <id>attach-sources</id>
  186. <goals>
  187. <goal>jar</goal>
  188. </goals>
  189. </execution>
  190. </executions>
  191. </plugin>
  192. <plugin>
  193. <groupId>org.apache.maven.plugins</groupId>
  194. <artifactId>maven-javadoc-plugin</artifactId>
  195. <version>2.10.4</version>
  196. <executions>
  197. <execution>
  198. <id>attach-javadocs</id>
  199. <goals>
  200. <goal>jar</goal>
  201. </goals>
  202. </execution>
  203. </executions>
  204. <configuration>
  205. <links>
  206. <link>http://docs.oracle.com/javase/8/docs/api/</link>
  207. </links>
  208. <packagesheader>Bean Validation API Packages</packagesheader>
  209. <doctitle>Bean Validation API ${project.version}</doctitle>
  210. <windowtitle>Bean Validation API ${project.version}</windowtitle>
  211. <bottom>
  212. <![CDATA[Copyright &copy; ${project.inceptionYear}-{currentYear} <a href="http://redhat.com">Red Hat Inc.</a> All Rights Reserved.
  213. Released under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache Software License 2.0</a>.]]>
  214. </bottom>
  215. </configuration>
  216. </plugin>
  217. <plugin>
  218. <groupId>org.apache.maven.plugins</groupId>
  219. <artifactId>maven-install-plugin</artifactId>
  220. <version>2.5.2</version>
  221. </plugin>
  222. <plugin>
  223. <groupId>org.apache.maven.plugins</groupId>
  224. <artifactId>maven-release-plugin</artifactId>
  225. <version>2.5.3</version>
  226. <configuration>
  227. <allowTimestampedSnapshots>true</allowTimestampedSnapshots>
  228. <remoteTagging>true</remoteTagging>
  229. <goals>deploy</goals>
  230. </configuration>
  231. </plugin>
  232. <plugin>
  233. <artifactId>maven-deploy-plugin</artifactId>
  234. <version>2.8.2</version>
  235. </plugin>
  236. <plugin>
  237. <groupId>com.mycila</groupId>
  238. <artifactId>license-maven-plugin</artifactId>
  239. <version>3.0</version>
  240. <configuration>
  241. <header>${project.basedir}/src/main/resources/license.header</header>
  242. <strictCheck>true</strictCheck>
  243. <headerDefinitions>
  244. <headerDefinition>${project.basedir}/src/main/resources/java-header-style.xml</headerDefinition>
  245. <headerDefinition>${project.basedir}/src/main/resources/xml-header-style.xml</headerDefinition>
  246. </headerDefinitions>
  247. <mapping>
  248. <java>JAVA_CLASS_STYLE</java>
  249. <xml>XML_FILE_STYLE</xml>
  250. <xsd>XML_FILE_STYLE</xsd>
  251. </mapping>
  252. <includes>
  253. <include>**/*.java</include>
  254. <include>**/*.xml</include>
  255. <include>**/*.xsd</include>
  256. </includes>
  257. </configuration>
  258. <executions>
  259. <execution>
  260. <id>license-headers</id>
  261. <goals>
  262. <goal>check</goal>
  263. </goals>
  264. </execution>
  265. </executions>
  266. </plugin>
  267. </plugins>
  268. </build>
  269. <profiles>
  270. <profile>
  271. <id>release</id>
  272. <properties>
  273. <createChecksum>true</createChecksum>
  274. </properties>
  275. </profile>
  276. </profiles>
  277. </project>