java-parent-pom-1.1.2.pom 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright 2013 Peter Lawrey
  4. ~
  5. ~ Licensed under the Apache License, Version 2.0 (the "License");
  6. ~ you may not use this file except in compliance with the License.
  7. ~ You may obtain a copy of the License at
  8. ~
  9. ~ http://www.apache.org/licenses/LICENSE-2.0
  10. ~
  11. ~ Unless required by applicable law or agreed to in writing, software
  12. ~ distributed under the License is distributed on an "AS IS" BASIS,
  13. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. ~ See the License for the specific language governing permissions and
  15. ~ limitations under the License.
  16. -->
  17. <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">
  18. <parent>
  19. <groupId>net.openhft</groupId>
  20. <artifactId>root-parent-pom</artifactId>
  21. <version>1.1.1</version>
  22. <relativePath />
  23. </parent>
  24. <modelVersion>4.0.0</modelVersion>
  25. <artifactId>java-parent-pom</artifactId>
  26. <version>1.1.2</version>
  27. <packaging>pom</packaging>
  28. <name>Java Parent Pom</name>
  29. <description>This parent pom is used by all the OpenHft java projects</description>
  30. <build>
  31. <pluginManagement>
  32. <plugins>
  33. <plugin>
  34. <groupId>org.apache.maven.plugins</groupId>
  35. <artifactId>maven-compiler-plugin</artifactId>
  36. <version>3.1</version>
  37. </plugin>
  38. <plugin>
  39. <groupId>org.apache.maven.plugins</groupId>
  40. <artifactId>maven-scm-publish-plugin</artifactId>
  41. <version>1.0-beta-2</version>
  42. </plugin>
  43. <plugin>
  44. <groupId>org.apache.maven.plugins</groupId>
  45. <artifactId>maven-resources-plugin</artifactId>
  46. <version>2.6</version>
  47. </plugin>
  48. <plugin>
  49. <groupId>org.apache.felix</groupId>
  50. <artifactId>maven-bundle-plugin</artifactId>
  51. <version>2.5.3</version>
  52. </plugin>
  53. <plugin>
  54. <groupId>org.apache.servicemix.tooling</groupId>
  55. <artifactId>depends-maven-plugin</artifactId>
  56. <version>1.2</version>
  57. </plugin>
  58. <plugin>
  59. <artifactId>maven-surefire-plugin</artifactId>
  60. <version>2.16</version>
  61. </plugin>
  62. </plugins>
  63. </pluginManagement>
  64. <plugins>
  65. <plugin>
  66. <groupId>org.apache.maven.plugins</groupId>
  67. <artifactId>maven-scm-publish-plugin</artifactId>
  68. <configuration>
  69. <checkoutDirectory>${project.build.directory}/scmpublish/javadoc</checkoutDirectory>
  70. <checkinComment>Publishing javadoc for ${project.artifactId}:${project.version}</checkinComment>
  71. <content>${project.reporting.outputDirectory}</content>
  72. <skipDeletedFiles>true</skipDeletedFiles>
  73. <pubScmUrl>scm:git:git@github.com:OpenHFT/${project.artifactId}
  74. </pubScmUrl>
  75. <scmBranch>gh-pages</scmBranch>
  76. </configuration>
  77. </plugin>
  78. <plugin>
  79. <groupId>org.apache.maven.plugins</groupId>
  80. <artifactId>maven-compiler-plugin</artifactId>
  81. <configuration>
  82. <compilerArgument>-Xlint:deprecation</compilerArgument>
  83. <source>1.7</source>
  84. <target>1.7</target>
  85. <encoding>UTF-8</encoding>
  86. </configuration>
  87. </plugin>
  88. <plugin>
  89. <groupId>org.apache.maven.plugins</groupId>
  90. <artifactId>maven-source-plugin</artifactId>
  91. <executions>
  92. <execution>
  93. <id>attach-sources</id>
  94. <goals>
  95. <goal>jar</goal>
  96. </goals>
  97. </execution>
  98. </executions>
  99. </plugin>
  100. <plugin>
  101. <groupId>org.apache.maven.plugins</groupId>
  102. <artifactId>maven-javadoc-plugin</artifactId>
  103. <executions>
  104. <execution>
  105. <id>attach-javadocs</id>
  106. <goals>
  107. <goal>jar</goal>
  108. </goals>
  109. </execution>
  110. </executions>
  111. </plugin>
  112. </plugins>
  113. </build>
  114. <scm>
  115. <url>scm:git:git@github.com:OpenHFT/OpenHFT.git</url>
  116. <connection>scm:git:git@github.com:OpenHFT/OpenHFT.git</connection>
  117. <developerConnection>scm:git:git@github.com:OpenHFT/OpenHFT.git</developerConnection>
  118. <tag>java-parent-pom-1.1.2</tag>
  119. </scm>
  120. </project>