jakarta.xml.bind-api-parent-2.3.2.pom 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. <?xml version="1.0"?>
  2. <!--
  3. Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
  4. This program and the accompanying materials are made available under the
  5. terms of the Eclipse Distribution License v. 1.0, which is available at
  6. http://www.eclipse.org/org/documents/edl-v10.php.
  7. SPDX-License-Identifier: BSD-3-Clause
  8. -->
  9. <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">
  10. <modelVersion>4.0.0</modelVersion>
  11. <parent>
  12. <groupId>org.eclipse.ee4j</groupId>
  13. <artifactId>project</artifactId>
  14. <version>1.0.5</version>
  15. </parent>
  16. <groupId>jakarta.xml.bind</groupId>
  17. <artifactId>jakarta.xml.bind-api-parent</artifactId>
  18. <version>2.3.2</version>
  19. <packaging>pom</packaging>
  20. <name>Java Architecture for XML Binding</name>
  21. <description>JAXB (JSR 222) API</description>
  22. <url>https://github.com/eclipse-ee4j/jaxb-api</url>
  23. <scm>
  24. <connection>scm:git:git://github.com/eclipse-ee4j/jaxb-api.git</connection>
  25. <developerConnection>scm:git:git@github.com:eclipse-ee4j/jaxb-api.git</developerConnection>
  26. <url>https://github.com/eclipse-ee4j/jaxb-api.git</url>
  27. <tag>HEAD</tag>
  28. </scm>
  29. <licenses>
  30. <license>
  31. <name>Eclipse Distribution License - v 1.0</name>
  32. <url>http://www.eclipse.org/org/documents/edl-v10.php</url>
  33. <distribution>repo</distribution>
  34. </license>
  35. </licenses>
  36. <developers>
  37. <developer>
  38. <name>Roman Grigoriadi</name>
  39. <email>roman.grigoriadi@oracle.com</email>
  40. <organization>Oracle Corporation</organization>
  41. </developer>
  42. </developers>
  43. <issueManagement>
  44. <system>github</system>
  45. <url>https://github.com/eclipse-ee4j/jaxb-api/issues</url>
  46. </issueManagement>
  47. <mailingLists>
  48. <mailingList>
  49. <name>Eclipse Project for JAXB mailing list</name>
  50. <post>jaxb-dev@eclipse.org</post>
  51. <subscribe>https://accounts.eclipse.org/mailing-list/jaxb-dev</subscribe>
  52. <unsubscribe>https://accounts.eclipse.org/mailing-list/jaxb-dev</unsubscribe>
  53. <archive>https://dev.eclipse.org/mhonarc/lists/jaxb-dev</archive>
  54. </mailingList>
  55. </mailingLists>
  56. <properties>
  57. <release.spec.feedback>jaxb-dev@eclipse.org</release.spec.feedback>
  58. <release.spec.date>Jul 2017</release.spec.date>
  59. <findbugs.exclude>${project.basedir}/exclude.xml</findbugs.exclude>
  60. <findbugs.threshold>Low</findbugs.threshold>
  61. <api.package>javax.xml.bind</api.package>
  62. <extension.name>jakarta.xml.bind</extension.name>
  63. <spec.version>2.3</spec.version>
  64. <impl.version>2</impl.version>
  65. <activation.version>1.2.1</activation.version>
  66. <config.dir>${project.basedir}/etc/config</config.dir>
  67. <vendor.name>Oracle Corporation</vendor.name>
  68. </properties>
  69. <modules>
  70. <module>jaxb-api</module>
  71. <module>jaxb-api-test</module>
  72. </modules>
  73. <dependencyManagement>
  74. <dependencies>
  75. <dependency>
  76. <groupId>jakarta.activation</groupId>
  77. <artifactId>jakarta.activation-api</artifactId>
  78. <version>${activation.version}</version>
  79. </dependency>
  80. </dependencies>
  81. </dependencyManagement>
  82. <build>
  83. <pluginManagement>
  84. <plugins>
  85. <plugin>
  86. <groupId>org.codehaus.mojo</groupId>
  87. <artifactId>build-helper-maven-plugin</artifactId>
  88. <version>3.0.0</version>
  89. </plugin>
  90. <plugin>
  91. <artifactId>maven-compiler-plugin</artifactId>
  92. <version>3.8.0</version>
  93. </plugin>
  94. <plugin>
  95. <groupId>org.glassfish.copyright</groupId>
  96. <artifactId>glassfish-copyright-maven-plugin</artifactId>
  97. <version>1.50</version>
  98. </plugin>
  99. <plugin>
  100. <artifactId>maven-surefire-plugin</artifactId>
  101. <version>2.20</version>
  102. </plugin>
  103. <plugin>
  104. <artifactId>maven-javadoc-plugin</artifactId>
  105. <version>3.0.1</version>
  106. </plugin>
  107. <plugin>
  108. <artifactId>maven-enforcer-plugin</artifactId>
  109. <version>3.0.0-M2</version>
  110. </plugin>
  111. <plugin>
  112. <artifactId>maven-source-plugin</artifactId>
  113. <version>3.0.1</version>
  114. </plugin>
  115. <plugin>
  116. <artifactId>maven-resources-plugin</artifactId>
  117. <version>3.1.0</version>
  118. </plugin>
  119. <plugin>
  120. <artifactId>maven-deploy-plugin</artifactId>
  121. <version>2.8.2</version>
  122. </plugin>
  123. <plugin>
  124. <artifactId>maven-dependency-plugin</artifactId>
  125. <version>3.1.1</version>
  126. </plugin>
  127. </plugins>
  128. </pluginManagement>
  129. <plugins>
  130. <plugin>
  131. <groupId>org.apache.maven.plugins</groupId>
  132. <artifactId>maven-compiler-plugin</artifactId>
  133. <configuration>
  134. <source>1.7</source>
  135. <target>1.7</target>
  136. <compilerArgs>
  137. <arg>-Xlint:all</arg>
  138. </compilerArgs>
  139. </configuration>
  140. </plugin>
  141. <plugin>
  142. <groupId>org.glassfish.copyright</groupId>
  143. <artifactId>glassfish-copyright-maven-plugin</artifactId>
  144. <configuration>
  145. <templateFile>${config.dir}/edl-copyright.txt</templateFile>
  146. <excludeFile>${config.dir}/copyright-exclude</excludeFile>
  147. <scm>git</scm>
  148. <!-- skip files not under SCM-->
  149. <scmOnly>true</scmOnly>
  150. <!-- turn off warnings -->
  151. <warn>true</warn>
  152. <!-- for use with repair -->
  153. <update>false</update>
  154. <!-- check that year is correct -->
  155. <ignoreYear>false</ignoreYear>
  156. </configuration>
  157. <executions>
  158. <execution>
  159. <phase>validate</phase>
  160. <goals>
  161. <goal>copyright</goal>
  162. </goals>
  163. </execution>
  164. </executions>
  165. </plugin>
  166. </plugins>
  167. </build>
  168. <profiles>
  169. <profile>
  170. <id>oss-release</id>
  171. <build>
  172. <plugins>
  173. <plugin>
  174. <groupId>org.apache.maven.plugins</groupId>
  175. <artifactId>maven-javadoc-plugin</artifactId>
  176. <configuration>
  177. <additionalJOptions>
  178. <additionalJOption>-Xdoclint:none</additionalJOption>
  179. </additionalJOptions>
  180. </configuration>
  181. </plugin>
  182. </plugins>
  183. </build>
  184. </profile>
  185. </profiles>
  186. </project>