jakarta.persistence-api-2.2.3.pom 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright (c) 2018, 2019 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 Public License v. 2.0 which is available at
  6. http://www.eclipse.org/legal/epl-2.0,
  7. or the Eclipse Distribution License v. 1.0 which is available at
  8. http://www.eclipse.org/org/documents/edl-v10.php.
  9. SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
  10. -->
  11. <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/xsd/maven-4.0.0.xsd">
  12. <modelVersion>4.0.0</modelVersion>
  13. <parent>
  14. <groupId>org.eclipse.ee4j</groupId>
  15. <artifactId>project</artifactId>
  16. <version>1.0.5</version>
  17. </parent>
  18. <groupId>jakarta.persistence</groupId>
  19. <artifactId>jakarta.persistence-api</artifactId>
  20. <version>2.2.3</version>
  21. <name>Jakarta Persistence API</name>
  22. <url>https://github.com/eclipse-ee4j/jpa-api</url>
  23. <scm>
  24. <connection>scm:git:git://github.com/eclipse-ee4j/jpa-api.git</connection>
  25. <developerConnection>scm:git:git@github.com:eclipse-ee4j/jpa-api.git</developerConnection>
  26. <url>https://github.com/eclipse-ee4j/jpa-api.git</url>
  27. <tag>HEAD</tag>
  28. </scm>
  29. <licenses>
  30. <license>
  31. <name>Eclipse Public License v. 2.0</name>
  32. <url>http://www.eclipse.org/legal/epl-2.0</url>
  33. <distribution>repo</distribution>
  34. <comments>Standard Eclipse Licence</comments>
  35. </license>
  36. <license>
  37. <name>Eclipse Distribution License v. 1.0</name>
  38. <url>http://www.eclipse.org/org/documents/edl-v10.php</url>
  39. <distribution>repo</distribution>
  40. <comments>Standard Eclipse Distribution License</comments>
  41. </license>
  42. </licenses>
  43. <developers>
  44. <developer>
  45. <id>lukasj</id>
  46. <name>Lukas Jungmann</name>
  47. <organization>Oracle, Inc.</organization>
  48. <roles>
  49. <role>lead</role>
  50. </roles>
  51. </developer>
  52. </developers>
  53. <issueManagement>
  54. <system>IssueTracker</system>
  55. <url>https://github.com/eclipse-ee4j/jpa-api/issues</url>
  56. </issueManagement>
  57. <mailingLists>
  58. <mailingList>
  59. <name>Community discussions</name>
  60. <subscribe>https://accounts.eclipse.org/mailing-list/jpa-dev</subscribe>
  61. <unsubscribe>https://accounts.eclipse.org/mailing-list/jpa-dev</unsubscribe>
  62. <post>jpa-dev@eclipse.org</post>
  63. <archive>https://dev.eclipse.org/mhonarc/lists/jpa-dev/</archive>
  64. <otherArchives>
  65. <otherArchive>http://dev.eclipse.org/mhonarc/lists/jpa-dev/maillist.rss</otherArchive>
  66. </otherArchives>
  67. </mailingList>
  68. </mailingLists>
  69. <properties>
  70. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  71. <maven.compiler.source>1.8</maven.compiler.source>
  72. <maven.compiler.target>1.8</maven.compiler.target>
  73. <spec.non.final>false</spec.non.final>
  74. <spec.version>2.2</spec.version>
  75. <spec.build>01</spec.build>
  76. <spec.impl.version>2.2.3</spec.impl.version>
  77. <spec.api.package>jakarta.persistence</spec.api.package>
  78. <spec.new.spec.version>2.3</spec.new.spec.version>
  79. <legal.doc.source>${project.basedir}</legal.doc.source>
  80. <vendor.name>Eclipse Foundation</vendor.name>
  81. </properties>
  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. <groupId>org.apache.maven.plugins</groupId>
  92. <artifactId>maven-enforcer-plugin</artifactId>
  93. <version>3.0.0-M2</version>
  94. </plugin>
  95. <plugin>
  96. <groupId>org.glassfish.build</groupId>
  97. <artifactId>spec-version-maven-plugin</artifactId>
  98. <version>1.5</version>
  99. </plugin>
  100. <plugin>
  101. <groupId>org.apache.maven.plugins</groupId>
  102. <artifactId>maven-compiler-plugin</artifactId>
  103. <version>3.8.0</version>
  104. </plugin>
  105. <plugin>
  106. <groupId>org.apache.felix</groupId>
  107. <artifactId>maven-bundle-plugin</artifactId>
  108. <version>3.5.1</version>
  109. </plugin>
  110. <plugin>
  111. <groupId>org.apache.maven.plugins</groupId>
  112. <artifactId>maven-jar-plugin</artifactId>
  113. <version>3.1.0</version>
  114. </plugin>
  115. <plugin>
  116. <groupId>org.apache.maven.plugins</groupId>
  117. <artifactId>maven-source-plugin</artifactId>
  118. <version>3.0.1</version>
  119. </plugin>
  120. <plugin>
  121. <groupId>org.apache.maven.plugins</groupId>
  122. <artifactId>maven-javadoc-plugin</artifactId>
  123. <version>3.0.1</version>
  124. </plugin>
  125. </plugins>
  126. </pluginManagement>
  127. <plugins>
  128. <plugin>
  129. <groupId>org.codehaus.mojo</groupId>
  130. <artifactId>build-helper-maven-plugin</artifactId>
  131. <executions>
  132. <execution>
  133. <id>add-legal-resource</id>
  134. <phase>generate-resources</phase>
  135. <goals>
  136. <goal>add-resource</goal>
  137. </goals>
  138. <configuration>
  139. <resources>
  140. <resource>
  141. <directory>${legal.doc.source}</directory>
  142. <includes>
  143. <include>NOTICE.md</include>
  144. <include>LICENSE.md</include>
  145. </includes>
  146. <targetPath>META-INF</targetPath>
  147. </resource>
  148. </resources>
  149. </configuration>
  150. </execution>
  151. </executions>
  152. </plugin>
  153. <plugin>
  154. <groupId>org.apache.maven.plugins</groupId>
  155. <artifactId>maven-enforcer-plugin</artifactId>
  156. <configuration>
  157. <rules>
  158. <requireJavaVersion>
  159. <version>[1.8,)</version>
  160. </requireJavaVersion>
  161. </rules>
  162. </configuration>
  163. <executions>
  164. <execution>
  165. <phase>validate</phase>
  166. <goals>
  167. <goal>display-info</goal>
  168. <goal>enforce</goal>
  169. </goals>
  170. </execution>
  171. </executions>
  172. </plugin>
  173. <plugin>
  174. <groupId>org.glassfish.build</groupId>
  175. <artifactId>spec-version-maven-plugin</artifactId>
  176. <configuration>
  177. <specMode>jakarta</specMode>
  178. <spec>
  179. <nonFinal>${spec.non.final}</nonFinal>
  180. <jarType>api</jarType>
  181. <specVersion>${spec.version}</specVersion>
  182. <specBuild>${spec.build}</specBuild>
  183. <specImplVersion>${spec.impl.version}</specImplVersion>
  184. <apiPackage>${spec.api.package}</apiPackage>
  185. <newSpecVersion>${spec.new.spec.version}</newSpecVersion>
  186. </spec>
  187. </configuration>
  188. <executions>
  189. <execution>
  190. <goals>
  191. <goal>set-spec-properties</goal>
  192. <!-- TODO:
  193. glassfish-spec-version-maven-plugin needs to be updated
  194. in order to check 'jakarta.' prefixed values in manifest entries
  195. -->
  196. <!--<goal>check-module</goal>-->
  197. </goals>
  198. </execution>
  199. </executions>
  200. </plugin>
  201. <plugin>
  202. <groupId>org.apache.maven.plugins</groupId>
  203. <artifactId>maven-compiler-plugin</artifactId>
  204. <configuration>
  205. <compilerArgs>
  206. <compilerArg>-Xlint:all</compilerArg>
  207. </compilerArgs>
  208. </configuration>
  209. </plugin>
  210. <plugin>
  211. <groupId>org.apache.felix</groupId>
  212. <artifactId>maven-bundle-plugin</artifactId>
  213. <configuration>
  214. <instructions>
  215. <Automatic-Module-Name>java.persistence</Automatic-Module-Name>
  216. <Bundle-Description>Jakarta Persistence ${spec.specification.version} API jar</Bundle-Description>
  217. <Bundle-Name>Jakarta Persistence API jar</Bundle-Name>
  218. <Bundle-SymbolicName>${spec.bundle.symbolic-name}</Bundle-SymbolicName>
  219. <Bundle-Version>${spec.bundle.version}</Bundle-Version>
  220. <Extension-Name>${spec.extension.name}</Extension-Name>
  221. <Implementation-Version>${spec.implementation.version}</Implementation-Version>
  222. <Specification-Vendor>${vendor.name}</Specification-Vendor>
  223. <Specification-Version>${spec.specification.version}</Specification-Version>
  224. <_noee>true</_noee>
  225. </instructions>
  226. </configuration>
  227. <executions>
  228. <execution>
  229. <id>osgi-manifest</id>
  230. <phase>process-classes</phase>
  231. <goals>
  232. <goal>manifest</goal>
  233. </goals>
  234. </execution>
  235. </executions>
  236. </plugin>
  237. <plugin>
  238. <groupId>org.apache.maven.plugins</groupId>
  239. <artifactId>maven-jar-plugin</artifactId>
  240. <configuration>
  241. <archive>
  242. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  243. </archive>
  244. </configuration>
  245. </plugin>
  246. <plugin>
  247. <groupId>org.apache.maven.plugins</groupId>
  248. <artifactId>maven-javadoc-plugin</artifactId>
  249. <configuration>
  250. <doclint>all</doclint>
  251. <detectJavaApiLink>false</detectJavaApiLink>
  252. <docfilessubdirs>true</docfilessubdirs>
  253. <description>Jakarta Persistence API documentation</description>
  254. <doctitle>Jakarta Persistence API documentation</doctitle>
  255. <windowtitle>Jakarta Persistence API documentation</windowtitle>
  256. <header><![CDATA[<br>Jakarta Persistence API v${project.version}]]>
  257. </header>
  258. <bottom><![CDATA[<br>
  259. Comments to: <a href="mailto:jpa-dev@eclipse.org">jpa-dev@eclipse.org</a>.<br>
  260. Copyright &#169; 2019 Eclipse Foundation. All rights reserved.<br>
  261. Use is subject to <a href="{@docRoot}/doc-files/speclicense.html" target="_top">license terms</a>.]]>
  262. </bottom>
  263. <groups>
  264. <group>
  265. <title>Jakarta Persistence API Packages</title>
  266. <packages>javax.persistence*</packages>
  267. </group>
  268. </groups>
  269. </configuration>
  270. </plugin>
  271. </plugins>
  272. </build>
  273. </project>