jakarta.transaction-api-1.3.3.pom 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright (c) 2012, 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 Public License v. 2.0, which is available at
  6. http://www.eclipse.org/legal/epl-2.0.
  7. This Source Code may also be made available under the following Secondary
  8. Licenses when the conditions for such availability set forth in the
  9. Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
  10. version 2 with the GNU Classpath Exception, which is available at
  11. https://www.gnu.org/software/classpath/license.html.
  12. SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
  13. -->
  14. <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">
  15. <modelVersion>4.0.0</modelVersion>
  16. <parent>
  17. <groupId>org.eclipse.ee4j</groupId>
  18. <artifactId>project</artifactId>
  19. <version>1.0.5</version>
  20. </parent>
  21. <groupId>jakarta.transaction</groupId>
  22. <artifactId>jakarta.transaction-api</artifactId>
  23. <version>1.3.3</version>
  24. <properties>
  25. <non.final>false</non.final>
  26. <extension.name>javax.transaction</extension.name>
  27. <spec.version>1.3</spec.version>
  28. <findbugs.version>2.3.1</findbugs.version>
  29. <findbugs.exclude>exclude.xml</findbugs.exclude>
  30. <findbugs.threshold>Low</findbugs.threshold>
  31. </properties>
  32. <name>${extension.name} API</name>
  33. <description>Jakarta Transactions</description>
  34. <url>https://projects.eclipse.org/projects/ee4j.jta</url>
  35. <developers>
  36. <developer>
  37. <id>stephen_felts</id>
  38. <name>Stephen Felts</name>
  39. <organization>Oracle, Inc.</organization>
  40. <roles>
  41. <role>lead</role>
  42. </roles>
  43. </developer>
  44. </developers>
  45. <organization>
  46. <name>EE4J Community</name>
  47. <url>https://github.com/eclipse-ee4j</url>
  48. </organization>
  49. <licenses>
  50. <license>
  51. <name>EPL 2.0</name>
  52. <url>http://www.eclipse.org/legal/epl-2.0</url>
  53. <distribution>repo</distribution>
  54. </license>
  55. <license>
  56. <name>GPL2 w/ CPE</name>
  57. <url>https://www.gnu.org/software/classpath/license.html</url>
  58. <distribution>repo</distribution>
  59. </license>
  60. </licenses>
  61. <issueManagement>
  62. <system>github</system>
  63. <url>https://github.com/eclipse-ee4j/jta-api/issues</url>
  64. </issueManagement>
  65. <mailingLists>
  66. <mailingList>
  67. <name>Jakarta Transactions mailing list</name>
  68. <post>jta-dev@eclipse.org</post>
  69. <subscribe>https://dev.eclipse.org/mailman/listinfo/jta-dev</subscribe>
  70. <unsubscribe>https://dev.eclipse.org/mailman/listinfo/jta-dev</unsubscribe>
  71. <archive>https://dev.eclipse.org/mhonarc/lists/jta-dev/</archive>
  72. </mailingList>
  73. </mailingLists>
  74. <scm>
  75. <connection>scm:git:https://github.com/eclipse-ee4j/jta-api.git</connection>
  76. <developerConnection>scm:git:git@github.com:eclipse-ee4j/jta-api.git</developerConnection>
  77. <url>https://github.com/eclipse-ee4j/jta-api</url>
  78. <tag>HEAD</tag>
  79. </scm>
  80. <build>
  81. <resources>
  82. <resource>
  83. <directory>src/main/java</directory>
  84. <includes>
  85. <include>**/*.properties</include>
  86. <include>**/*.html</include>
  87. </includes>
  88. </resource>
  89. <resource>
  90. <directory>src/main/resources</directory>
  91. <excludes>
  92. <exclude>META-INF/README</exclude>
  93. </excludes>
  94. </resource>
  95. </resources>
  96. <plugins>
  97. <plugin>
  98. <artifactId>maven-compiler-plugin</artifactId>
  99. <version>2.5.1</version>
  100. <configuration>
  101. <source>1.7</source>
  102. <target>1.7</target>
  103. <compilerArgument>-Xlint:unchecked</compilerArgument>
  104. </configuration>
  105. </plugin>
  106. <plugin>
  107. <groupId>org.glassfish.build</groupId>
  108. <artifactId>spec-version-maven-plugin</artifactId>
  109. <version>2.0</version>
  110. <configuration>
  111. <specMode>jakarta</specMode>
  112. <spec>
  113. <nonFinal>${non.final}</nonFinal>
  114. <jarType>api</jarType>
  115. <specVersion>${spec.version}</specVersion>
  116. <specImplVersion>${project.version}</specImplVersion>
  117. <apiPackage>${extension.name}</apiPackage>
  118. </spec>
  119. </configuration>
  120. <executions>
  121. <execution>
  122. <goals>
  123. <goal>set-spec-properties</goal>
  124. <goal>check-module</goal>
  125. </goals>
  126. </execution>
  127. </executions>
  128. </plugin>
  129. <plugin>
  130. <groupId>org.apache.felix</groupId>
  131. <artifactId>maven-bundle-plugin</artifactId>
  132. <version>1.4.3</version>
  133. <configuration>
  134. <supportedProjectTypes>
  135. <supportedProjectType>jar</supportedProjectType>
  136. </supportedProjectTypes>
  137. <instructions>
  138. <Bundle-Version>${spec.bundle.version}</Bundle-Version>
  139. <Bundle-SymbolicName>${spec.bundle.symbolic-name}</Bundle-SymbolicName>
  140. <Extension-Name>${spec.extension.name}</Extension-Name>
  141. <Implementation-Version>${spec.implementation.version}</Implementation-Version>
  142. <Specification-Version>${spec.specification.version}</Specification-Version>
  143. <Bundle-Description>
  144. Jakarta(TM) Transactions ${spec.version} API Design Specification
  145. </Bundle-Description>
  146. <Specification-Vendor>Oracle Corporation</Specification-Vendor>
  147. <Implementation-Vendor>${project.organization.name}</Implementation-Vendor>
  148. <Implementation-Vendor-Id>org.glassfish</Implementation-Vendor-Id>
  149. <Import-Package>javax.interceptor.*;version="[1.2,1.2.98)",*</Import-Package>
  150. <_include>-${basedir}/osgi.bundle</_include>
  151. </instructions>
  152. </configuration>
  153. <executions>
  154. <execution>
  155. <id>bundle-manifest</id>
  156. <phase>process-classes</phase>
  157. <goals>
  158. <goal>manifest</goal>
  159. </goals>
  160. </execution>
  161. </executions>
  162. </plugin>
  163. <plugin>
  164. <groupId>org.apache.maven.plugins</groupId>
  165. <artifactId>maven-jar-plugin</artifactId>
  166. <version>2.4</version>
  167. <configuration>
  168. <archive>
  169. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  170. <manifestEntries>
  171. <!-- for JDK 9 -->
  172. <Automatic-Module-Name>
  173. java.transaction
  174. </Automatic-Module-Name>
  175. </manifestEntries>
  176. </archive>
  177. <excludes>
  178. <exclude>**/*.java</exclude>
  179. </excludes>
  180. </configuration>
  181. </plugin>
  182. <plugin>
  183. <groupId>org.codehaus.mojo</groupId>
  184. <artifactId>build-helper-maven-plugin</artifactId>
  185. <version>3.0.0</version>
  186. <executions>
  187. <execution>
  188. <id>add-resource</id>
  189. <phase>generate-resources</phase>
  190. <goals>
  191. <goal>add-resource</goal>
  192. </goals>
  193. <configuration>
  194. <resources>
  195. <resource>
  196. <directory>.</directory>
  197. <targetPath>META-INF</targetPath>
  198. <includes>
  199. <include>LICENSE.md</include>
  200. <include>NOTICE.md</include>
  201. </includes>
  202. </resource>
  203. </resources>
  204. </configuration>
  205. </execution>
  206. </executions>
  207. </plugin>
  208. <plugin>
  209. <groupId>org.apache.maven.plugins</groupId>
  210. <artifactId>maven-source-plugin</artifactId>
  211. <version>2.1</version>
  212. <configuration>
  213. <includePom>true</includePom>
  214. </configuration>
  215. <executions>
  216. <execution>
  217. <id>attach-sources</id>
  218. <goals>
  219. <goal>jar-no-fork</goal>
  220. </goals>
  221. </execution>
  222. </executions>
  223. </plugin>
  224. <plugin>
  225. <groupId>org.apache.maven.plugins</groupId>
  226. <artifactId>maven-javadoc-plugin</artifactId>
  227. <version>2.9</version>
  228. <configuration>
  229. <author>false</author>
  230. <description>
  231. Jakarta Transactions documentation
  232. </description>
  233. <doctitle>
  234. Jakarta Transactions documentation
  235. </doctitle>
  236. <windowtitle>
  237. Jakarta Transactions documentation
  238. </windowtitle>
  239. <splitindex>true</splitindex>
  240. <use>true</use>
  241. <bottom>
  242. <![CDATA[Copyright &#169; 2019 Eclipse Foundation. All Rights Reserved.
  243. <br/>Use is subject to
  244. <a href="{@docRoot}/doc-files/EFSL.html" target="_top">license terms</a>.
  245. ]]>
  246. </bottom>
  247. </configuration>
  248. <executions>
  249. <execution>
  250. <phase>package</phase>
  251. <goals>
  252. <goal>javadoc</goal>
  253. </goals>
  254. </execution>
  255. </executions>
  256. </plugin>
  257. <plugin>
  258. <groupId>org.codehaus.mojo</groupId>
  259. <artifactId>findbugs-maven-plugin</artifactId>
  260. <version>${findbugs.version}</version>
  261. <configuration>
  262. <threshold>${findbugs.threshold}</threshold>
  263. <excludeFilterFile>${findbugs.exclude}</excludeFilterFile>
  264. <findbugsXmlOutput>true</findbugsXmlOutput>
  265. <findbugsXmlWithMessages>true</findbugsXmlWithMessages>
  266. </configuration>
  267. </plugin>
  268. <plugin>
  269. <groupId>org.apache.maven.plugins</groupId>
  270. <artifactId>maven-release-plugin</artifactId>
  271. <version>2.5.3</version>
  272. <configuration>
  273. <mavenExecutorId>forked-path</mavenExecutorId>
  274. <useReleaseProfile>false</useReleaseProfile>
  275. <arguments>${release.arguments}</arguments>
  276. </configuration>
  277. </plugin>
  278. <plugin>
  279. <groupId>org.apache.maven.plugins</groupId>
  280. <artifactId>maven-site-plugin</artifactId>
  281. <version>3.1</version>
  282. <configuration>
  283. <reporting>
  284. <plugins>
  285. <plugin>
  286. <groupId>org.codehaus.mojo</groupId>
  287. <artifactId>findbugs-maven-plugin</artifactId>
  288. <version>${findbugs.version}</version>
  289. <configuration>
  290. <threshold>${findbugs.threshold}</threshold>
  291. <excludeFilterFile>${findbugs.exclude}</excludeFilterFile>
  292. </configuration>
  293. </plugin>
  294. </plugins>
  295. </reporting>
  296. </configuration>
  297. </plugin>
  298. </plugins>
  299. </build>
  300. <dependencies>
  301. <dependency>
  302. <groupId>jakarta.enterprise</groupId>
  303. <artifactId>jakarta.enterprise.cdi-api</artifactId>
  304. <version>2.0.1</version>
  305. <scope>provided</scope>
  306. </dependency>
  307. </dependencies>
  308. </project>