25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

382 satır
12KB

  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>org.eclipse.ee4j</groupId>
  5. <artifactId>project</artifactId>
  6. <version>1.0.6</version>
  7. <relativePath />
  8. </parent>
  9. <groupId>tmp.org.glassfish.corba</groupId>
  10. <artifactId>placeholder.glassfish-corba</artifactId>
  11. <version>4.2.4</version>
  12. <name>ORB Implementation</name>
  13. <packaging>pom</packaging>
  14. <description>A CORBA ORB for Glassfish</description>
  15. <url>https://projects.eclipse.org/proposals/eclipse-orb</url>
  16. <issueManagement>
  17. <system>github</system>
  18. <url>https://github.com/eclipse-ee4j/orb/issues</url>
  19. </issueManagement>
  20. <licenses>
  21. <license>
  22. <name>EDL 1.0</name>
  23. <url>https://www.eclipse.org/org/documents/edl-v10.php</url>
  24. <distribution>repo</distribution>
  25. </license>
  26. </licenses>
  27. <mailingLists>
  28. <mailingList>
  29. <name>ORB mailing list</name>
  30. <post>orb-dev@eclipse.org</post>
  31. <subscribe>https://dev.eclipse.org/mailman/listinfo/orb-dev</subscribe>
  32. <unsubscribe>https://dev.eclipse.org/mailman/listinfo/orb-dev</unsubscribe>
  33. <archive>https://dev.eclipse.org/mhonarc/lists/orb-dev</archive>
  34. </mailingList>
  35. </mailingLists>
  36. <scm>
  37. <connection>scm:git:https://github.com/eclipse-ee4j/orb.git</connection>
  38. <developerConnection>scm:git:ssh://git@github.com/eclipse-ee4j/orb.git</developerConnection>
  39. <url>https://github.com/eclipse-ee4j/orb</url>
  40. <tag>HEAD</tag>
  41. </scm>
  42. <distributionManagement>
  43. <site>
  44. <id>github</id>
  45. <url>scm:git:https://github.com/eclipse-ee4j/orb.git</url>
  46. </site>
  47. </distributionManagement>
  48. <developers>
  49. <developer>
  50. <name>Russell Gold</name>
  51. <email>russell.gold@oracle.com</email>
  52. <id>russgold</id>
  53. </developer>
  54. <developer>
  55. <name>Harshad Vilekar</name>
  56. </developer>
  57. </developers>
  58. <modules>
  59. <module>idlj</module>
  60. <module>rmic</module>
  61. <module>omgapi</module>
  62. <module>csiv2-idl</module>
  63. <module>exception-annotation-processor</module>
  64. <module>orbmain</module>
  65. <module>internal-api</module>
  66. </modules>
  67. <properties>
  68. <copyright.exclude>make/copyright-information/copyright-exclude.txt</copyright.exclude>
  69. <copyright.ignoreyear>false</copyright.ignoreyear>
  70. <copyright.scmonly>true</copyright.scmonly>
  71. <copyright.template>make/copyright-information/copyright.txt</copyright.template>
  72. <copyright.update>false</copyright.update>
  73. <jdkVersion>1.8</jdkVersion>
  74. <maven.compiler.source>${jdkVersion}</maven.compiler.source>
  75. <maven.compiler.target>${jdkVersion}</maven.compiler.target>
  76. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  77. <sonar.dynamicAnalysis>false</sonar.dynamicAnalysis>
  78. <pfl-version>4.1.2</pfl-version>
  79. <gmbal-version>4.0.0</gmbal-version>
  80. </properties>
  81. <build>
  82. <plugins>
  83. <plugin>
  84. <groupId>org.apache.maven.plugins</groupId>
  85. <artifactId>maven-jar-plugin</artifactId>
  86. <version>3.1.0</version>
  87. <configuration>
  88. <archive>
  89. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  90. </archive>
  91. </configuration>
  92. </plugin>
  93. <plugin>
  94. <artifactId>maven-site-plugin</artifactId>
  95. <version>3.3</version>
  96. <executions>
  97. <execution>
  98. <id>stage-for-scm-publish</id>
  99. <phase>post-site</phase>
  100. <goals>
  101. <goal>stage</goal>
  102. </goals>
  103. </execution>
  104. <execution>
  105. <id>default-deploy</id>
  106. <phase>none</phase>
  107. </execution>
  108. </executions>
  109. </plugin>
  110. <plugin>
  111. <artifactId>maven-scm-publish-plugin</artifactId>
  112. <version>1.1</version>
  113. <configuration>
  114. <scmBranch>gh-pages</scmBranch>
  115. <pubScmUrl>scm:git:https://github.com/javaee/glassfish-corba.git</pubScmUrl>
  116. </configuration>
  117. </plugin>
  118. <plugin>
  119. <groupId>org.glassfish.copyright</groupId>
  120. <artifactId>glassfish-copyright-maven-plugin</artifactId>
  121. <configuration>
  122. <templateFile>${copyright.template}</templateFile>
  123. <excludeFile>${copyright.exclude}</excludeFile>
  124. <scmOnly>${copyright.scmonly}</scmOnly>
  125. <update>${copyright.update}</update>
  126. <ignoreYear>${copyright.ignoreyear}</ignoreYear>
  127. </configuration>
  128. </plugin>
  129. </plugins>
  130. <pluginManagement>
  131. <plugins>
  132. <plugin>
  133. <groupId>org.apache.maven.plugins</groupId>
  134. <artifactId>maven-surefire-plugin</artifactId>
  135. <version>2.20</version>
  136. </plugin>
  137. <plugin>
  138. <groupId>org.apache.maven.plugins</groupId>
  139. <artifactId>maven-jar-plugin</artifactId>
  140. <version>3.1.0</version>
  141. </plugin>
  142. <plugin>
  143. <groupId>org.apache.felix</groupId>
  144. <artifactId>maven-bundle-plugin</artifactId>
  145. <version>4.1.0</version>
  146. <extensions>true</extensions>
  147. <executions>
  148. <execution>
  149. <goals>
  150. <goal>manifest</goal>
  151. <goal>install</goal>
  152. <goal>deploy</goal>
  153. </goals>
  154. </execution>
  155. </executions>
  156. </plugin>
  157. <plugin>
  158. <groupId>org.codehaus.mojo</groupId>
  159. <artifactId>idlj-maven-plugin</artifactId>
  160. <version>1.2.2</version>
  161. <executions>
  162. <execution>
  163. <goals>
  164. <goal>generate</goal>
  165. </goals>
  166. </execution>
  167. </executions>
  168. <dependencies>
  169. <dependency>
  170. <groupId>${project.groupId}</groupId>
  171. <artifactId>idlj</artifactId>
  172. <version>${project.version}</version>
  173. </dependency>
  174. </dependencies>
  175. <configuration>
  176. <sources>
  177. <source>
  178. <compatible>false</compatible>
  179. <defines>
  180. <define>
  181. <symbol>CORBA3</symbol>
  182. </define>
  183. </defines>
  184. <additionalArguments>
  185. <additionalArgument>-corba</additionalArgument>
  186. <additionalArgument>3.0</additionalArgument>
  187. </additionalArguments>
  188. </source>
  189. </sources>
  190. </configuration>
  191. </plugin>
  192. <plugin>
  193. <groupId>org.codehaus.mojo</groupId>
  194. <artifactId>rmic-maven-plugin</artifactId>
  195. <version>1.3</version>
  196. <executions>
  197. <execution>
  198. <goals>
  199. <goal>test-rmic</goal>
  200. </goals>
  201. </execution>
  202. </executions>
  203. <dependencies>
  204. <dependency>
  205. <groupId>org.glassfish.corba</groupId>
  206. <artifactId>rmic</artifactId>
  207. <version>${project.version}</version>
  208. </dependency>
  209. </dependencies>
  210. </plugin>
  211. <plugin>
  212. <groupId>org.apache.maven.plugins</groupId>
  213. <artifactId>maven-antrun-plugin</artifactId>
  214. <version>1.6</version>
  215. <dependencies>
  216. <dependency>
  217. <groupId>ant</groupId>
  218. <artifactId>ant-junit</artifactId>
  219. <version>1.6.5</version>
  220. </dependency>
  221. <dependency>
  222. <groupId>junit</groupId>
  223. <artifactId>junit</artifactId>
  224. <version>4.13.1</version>
  225. </dependency>
  226. </dependencies>
  227. </plugin>
  228. <plugin>
  229. <groupId>org.apache.maven.plugins</groupId>
  230. <artifactId>maven-project-info-reports-plugin</artifactId>
  231. <version>2.9</version>
  232. </plugin>
  233. <plugin>
  234. <groupId>org.apache.maven.plugins</groupId>
  235. <artifactId>maven-enforcer-plugin</artifactId>
  236. <version>3.0.0-M2</version>
  237. </plugin>
  238. <plugin>
  239. <groupId>org.apache.maven.plugins</groupId>
  240. <artifactId>maven-gpg-plugin</artifactId>
  241. <version>1.6</version>
  242. </plugin>
  243. <plugin>
  244. <groupId>org.apache.maven.plugins</groupId>
  245. <artifactId>maven-source-plugin</artifactId>
  246. <version>3.0.1</version>
  247. </plugin>
  248. <plugin>
  249. <groupId>org.apache.maven.plugins</groupId>
  250. <artifactId>maven-javadoc-plugin</artifactId>
  251. <version>3.0.1</version>
  252. </plugin>
  253. <plugin>
  254. <groupId>org.apache.maven.plugins</groupId>
  255. <artifactId>maven-compiler-plugin</artifactId>
  256. <version>3.7.0</version>
  257. </plugin>
  258. <plugin>
  259. <groupId>org.jacoco</groupId>
  260. <artifactId>jacoco-maven-plugin</artifactId>
  261. <version>0.8.5</version>
  262. <executions>
  263. <execution>
  264. <id>coverage-initialize</id>
  265. <goals>
  266. <goal>prepare-agent</goal>
  267. </goals>
  268. </execution>
  269. <execution>
  270. <id>coverage-report</id>
  271. <phase>post-integration-test</phase>
  272. <goals>
  273. <goal>report</goal>
  274. </goals>
  275. </execution>
  276. </executions>
  277. </plugin>
  278. <plugin>
  279. <groupId>org.glassfish.copyright</groupId>
  280. <artifactId>glassfish-copyright-maven-plugin</artifactId>
  281. <version>2.3</version>
  282. </plugin>
  283. </plugins>
  284. </pluginManagement>
  285. <extensions>
  286. <extension>
  287. <groupId>org.apache.maven.wagon</groupId>
  288. <artifactId>wagon-webdav-jackrabbit</artifactId>
  289. <version>2.4</version>
  290. </extension>
  291. </extensions>
  292. </build>
  293. <reporting>
  294. <plugins>
  295. </plugins>
  296. </reporting>
  297. <profiles>
  298. <profile>
  299. <id>disable-java8-doclint</id>
  300. <activation>
  301. <jdk>[1.8,)</jdk>
  302. </activation>
  303. <properties>
  304. <additionalparam>-Xdoclint:none</additionalparam>
  305. </properties>
  306. </profile>
  307. <profile>
  308. <id>install-legal-files</id>
  309. <activation>
  310. <file>
  311. <exists>src/main/java</exists>
  312. </file>
  313. </activation>
  314. <build>
  315. <plugins>
  316. <plugin>
  317. <groupId>com.coderplus.maven.plugins</groupId>
  318. <artifactId>copy-rename-maven-plugin</artifactId>
  319. <version>1.0.1</version>
  320. <executions>
  321. <execution>
  322. <id>copy-legal-files</id>
  323. <phase>generate-resources</phase>
  324. <goals>
  325. <goal>copy</goal>
  326. </goals>
  327. <configuration>
  328. <fileSets>
  329. <fileSet>
  330. <sourceFile>${project.basedir}/../LICENSE.md</sourceFile>
  331. <destinationFile>${project.build.outputDirectory}/META-INF/LICENSE</destinationFile>
  332. </fileSet>
  333. <fileSet>
  334. <sourceFile>${project.basedir}/../NOTICE.md</sourceFile>
  335. <destinationFile>${project.build.outputDirectory}/META-INF/NOTICE</destinationFile>
  336. </fileSet>
  337. </fileSets>
  338. </configuration>
  339. </execution>
  340. </executions>
  341. </plugin>
  342. </plugins>
  343. </build>
  344. </profile>
  345. <profile>
  346. <id>legacy-functional-test</id>
  347. <activation>
  348. <jdk>(,1.8]</jdk>
  349. </activation>
  350. <modules>
  351. <module>functional-tests</module>
  352. </modules>
  353. </profile>
  354. </profiles>
  355. <dependencies>
  356. <dependency>
  357. <groupId>com.meterware.simplestub</groupId>
  358. <artifactId>simplestub</artifactId>
  359. <version>1.2.12</version>
  360. <scope>test</scope>
  361. </dependency>
  362. <dependency>
  363. <groupId>junit</groupId>
  364. <artifactId>junit</artifactId>
  365. <version>4.13.1</version>
  366. <scope>test</scope>
  367. </dependency>
  368. <dependency>
  369. <groupId>org.hamcrest</groupId>
  370. <artifactId>hamcrest-all</artifactId>
  371. <version>1.3</version>
  372. <scope>test</scope>
  373. </dependency>
  374. <dependency>
  375. <groupId>org.glassfish.corba</groupId>
  376. <artifactId>glassfish-corba</artifactId>
  377. <version>4.2.4</version>
  378. </dependency>
  379. </dependencies>
  380. </project>