cglib-parent-3.3.0.pom 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.sonatype.oss</groupId>
  7. <artifactId>oss-parent</artifactId>
  8. <version>7</version>
  9. </parent>
  10. <!-- ====================================================================== -->
  11. <!-- P R O J E C T D E S C R I P T I O N -->
  12. <!-- ====================================================================== -->
  13. <groupId>cglib</groupId>
  14. <artifactId>cglib-parent</artifactId>
  15. <version>3.3.0</version>
  16. <packaging>pom</packaging>
  17. <name>Code Generation Library</name>
  18. <url>https://github.com/cglib/cglib</url>
  19. <description>cglib is a powerful, high performance and quality Code Generation Library, It is used to extend JAVA classes and implements interfaces at runtime.</description>
  20. <scm>
  21. <connection>scm:git:git://github.com/cglib/cglib.git</connection>
  22. <developerConnection>scm:git:ssh://git@github.com/cglib/cglib.git</developerConnection>
  23. <url>https://github.com/cglib/cglib</url>
  24. </scm>
  25. <issueManagement>
  26. <system>Github Issues</system>
  27. <url>https://github.com/cglib/cglib/issues</url>
  28. </issueManagement>
  29. <ciManagement>
  30. <system>Travis</system>
  31. <url>https://travis-ci.org/cglib/cglib</url>
  32. </ciManagement>
  33. <licenses>
  34. <license>
  35. <name>ASF 2.0</name>
  36. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  37. <distribution>repo</distribution>
  38. </license>
  39. </licenses>
  40. <!-- ====================================================================== -->
  41. <!-- P R O P E R T I E S -->
  42. <!-- ====================================================================== -->
  43. <properties>
  44. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  45. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  46. <java.version.source>1.5</java.version.source>
  47. <java.version.target>1.5</java.version.target>
  48. <asm.version>7.1</asm.version>
  49. <ant.version>1.10.3</ant.version>
  50. <jmh.version>1.21</jmh.version>
  51. <maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
  52. <maven-resources-plugin.version>3.1.0</maven-resources-plugin.version>
  53. <maven-javadoc-plugin.version>3.0.1</maven-javadoc-plugin.version>
  54. <maven-jar-plugin.version>3.1.0</maven-jar-plugin.version>
  55. <java.compiler.argument />
  56. <java.test.compiler.argument>${java.compiler.argument}</java.test.compiler.argument>
  57. <gpg.skip>true</gpg.skip>
  58. </properties>
  59. <!-- ====================================================================== -->
  60. <!-- M O D U L E S -->
  61. <!-- ====================================================================== -->
  62. <modules>
  63. <module>cglib</module>
  64. <module>cglib-nodep</module>
  65. <module>cglib-sample</module>
  66. <module>cglib-integration-test</module>
  67. <module>cglib-jmh</module>
  68. </modules>
  69. <!-- ====================================================================== -->
  70. <!-- P R O F I L E S -->
  71. <!-- ====================================================================== -->
  72. <profiles>
  73. <profile>
  74. <id>java8</id>
  75. <activation>
  76. <jdk>[1.8,)</jdk>
  77. </activation>
  78. <properties>
  79. <java.test.compiler.argument>-parameters</java.test.compiler.argument>
  80. </properties>
  81. </profile>
  82. <profile>
  83. <id>java9</id>
  84. <activation>
  85. <jdk>[1.9,)</jdk>
  86. </activation>
  87. <properties>
  88. <java.version.source>1.6</java.version.source>
  89. <java.version.target>1.6</java.version.target>
  90. <java.test.compiler.argument>-parameters</java.test.compiler.argument>
  91. </properties>
  92. </profile>
  93. </profiles>
  94. <!-- ====================================================================== -->
  95. <!-- B U I L D -->
  96. <!-- ====================================================================== -->
  97. <build>
  98. <pluginManagement>
  99. <plugins>
  100. <plugin>
  101. <groupId>org.apache.maven.plugins</groupId>
  102. <artifactId>maven-compiler-plugin</artifactId>
  103. <version>${maven-compiler-plugin.version}</version>
  104. <configuration>
  105. <source>${java.version.source}</source>
  106. <target>${java.version.target}</target>
  107. <compilerArgument>${java.compiler.argument}</compilerArgument>
  108. <testSource>${java.specification.version}</testSource>
  109. <testTarget>${java.specification.version}</testTarget>
  110. <testCompilerArgument>${java.test.compiler.argument}</testCompilerArgument>
  111. </configuration>
  112. </plugin>
  113. <plugin>
  114. <groupId>org.apache.maven.plugins</groupId>
  115. <artifactId>maven-surefire-plugin</artifactId>
  116. <version>2.21.0</version>
  117. <configuration>
  118. <systemProperties>
  119. <property>
  120. <name>net.sf.cglib.test.stressHashCodes</name>
  121. <value>true</value>
  122. </property>
  123. </systemProperties>
  124. </configuration>
  125. </plugin>
  126. <plugin>
  127. <groupId>org.apache.maven.plugins</groupId>
  128. <artifactId>maven-failsafe-plugin</artifactId>
  129. <version>2.21.0</version>
  130. <configuration>
  131. <systemProperties>
  132. <property>
  133. <name>net.sf.cglib.test.stressHashCodes</name>
  134. <value>true</value>
  135. </property>
  136. </systemProperties>
  137. </configuration>
  138. </plugin>
  139. <plugin>
  140. <groupId>org.apache.maven.plugins</groupId>
  141. <artifactId>maven-javadoc-plugin</artifactId>
  142. <version>${maven-javadoc-plugin.version}</version>
  143. <configuration>
  144. <quiet>true</quiet>
  145. <detectLinks>false</detectLinks>
  146. <detectOfflineLinks>false</detectOfflineLinks>
  147. <!--<skip>${skipJavadoc}</skip>-->
  148. <use>false</use>
  149. <doclint>none</doclint>
  150. <additionalDependencies>
  151. <additionalDependency>
  152. <groupId>org.ow2.asm</groupId>
  153. <artifactId>asm</artifactId>
  154. <version>${asm.version}</version>
  155. </additionalDependency>
  156. <additionalDependency>
  157. <groupId>org.apache.ant</groupId>
  158. <artifactId>ant</artifactId>
  159. <version>${ant.version}</version>
  160. </additionalDependency>
  161. </additionalDependencies>
  162. </configuration>
  163. <executions>
  164. <execution>
  165. <id>attach-javadocs</id>
  166. <goals>
  167. <goal>jar</goal>
  168. </goals>
  169. </execution>
  170. </executions>
  171. </plugin>
  172. <plugin>
  173. <groupId>org.sonatype.plugins</groupId>
  174. <artifactId>jarjar-maven-plugin</artifactId>
  175. <version>1.9</version>
  176. </plugin>
  177. </plugins>
  178. </pluginManagement>
  179. <plugins>
  180. <plugin>
  181. <groupId>org.apache.maven.plugins</groupId>
  182. <artifactId>maven-gpg-plugin</artifactId>
  183. <version>1.6</version>
  184. <executions>
  185. <execution>
  186. <id>sign-artifacts</id>
  187. <phase>verify</phase>
  188. <goals>
  189. <goal>sign</goal>
  190. </goals>
  191. </execution>
  192. </executions>
  193. </plugin>
  194. </plugins>
  195. </build>
  196. <!-- ====================================================================== -->
  197. <!-- D E P E N D E N C Y M A N A G E M E N T -->
  198. <!-- ====================================================================== -->
  199. <dependencyManagement>
  200. <dependencies>
  201. <dependency>
  202. <groupId>${project.groupId}</groupId>
  203. <artifactId>cglib</artifactId>
  204. <version>${project.version}</version>
  205. </dependency>
  206. <dependency>
  207. <groupId>${project.groupId}</groupId>
  208. <artifactId>cglib-sample</artifactId>
  209. <version>${project.version}</version>
  210. </dependency>
  211. <dependency>
  212. <groupId>org.ow2.asm</groupId>
  213. <artifactId>asm</artifactId>
  214. <version>${asm.version}</version>
  215. </dependency>
  216. <dependency>
  217. <groupId>org.apache.ant</groupId>
  218. <artifactId>ant</artifactId>
  219. <version>${ant.version}</version>
  220. </dependency>
  221. <dependency>
  222. <groupId>junit</groupId>
  223. <artifactId>junit</artifactId>
  224. <version>4.12</version>
  225. <scope>test</scope>
  226. </dependency>
  227. </dependencies>
  228. </dependencyManagement>
  229. </project>