You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 5.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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/maven-v4_0_0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>javassist</groupId>
  4. <artifactId>javassist</artifactId>
  5. <packaging>jar</packaging>
  6. <description>Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation
  7. simple. It is a class library for editing bytecodes in Java.
  8. </description>
  9. <version>3.13.0-GA</version>
  10. <name>Javassist</name>
  11. <url>http://www.javassist.org/</url>
  12. <issueManagement>
  13. <system>JIRA</system>
  14. <url>https://jira.jboss.org/jira/browse/JASSIST/</url>
  15. </issueManagement>
  16. <licenses>
  17. <!-- this is the license under which javassist is usually distributed
  18. -->
  19. <license>
  20. <name>MPL 1.1</name>
  21. <url>http://www.mozilla.org/MPL/MPL-1.1.html</url>
  22. </license>
  23. <!-- this is the license under which javassist is distributed when
  24. it is bundled with JBoss
  25. -->
  26. <license>
  27. <name>LGPL 2.1</name>
  28. <url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
  29. </license>
  30. </licenses>
  31. <scm>
  32. <connection>scm:svn:http://anonsvn.jboss.org/repos/javassist/</connection>
  33. <developerConnection>scm:svn:https://svn.jboss.org/repos/javassist/</developerConnection>
  34. <url>http://fisheye.jboss.org/browse/javassist/</url>
  35. </scm>
  36. <developers>
  37. <developer>
  38. <id>chiba</id>
  39. <name>Shigeru Chiba</name>
  40. <email>chiba@acm.org</email>
  41. <organization>Tokyo Institute of Technology</organization>
  42. <organizationUrl>http://www.javassist.org/</organizationUrl>
  43. <roles>
  44. <role>project lead</role>
  45. </roles>
  46. <timezone>8</timezone>
  47. </developer>
  48. <developer>
  49. <id>adinn</id>
  50. <name>Andrew Dinn</name>
  51. <email>adinn@redhat.com</email>
  52. <organization>JBoss</organization>
  53. <organizationUrl>http://www.jboss.org/</organizationUrl>
  54. <roles>
  55. <role>contributing developer</role>
  56. </roles>
  57. <timezone>0</timezone>
  58. </developer>
  59. </developers>
  60. <distributionManagement>
  61. <!--
  62. You need entries in your .m2/settings.xml like this:
  63. <servers>
  64. <server>
  65. <id>jboss-releases-repository</id>
  66. <username>your_jboss.org_username</username>
  67. <password>password</password>
  68. </server>
  69. <server>
  70. <id>jboss-snapshots-repository</id>
  71. <username>your_jboss.org_username</username>
  72. <password>password</password>
  73. </server>
  74. </servers>
  75. To deploy a snapshot, you need to run
  76. mvn deploy -Dversion=3.x.y-SNAPSHOT
  77. To deploy a release you need to change the version to 3.x.y.GA and run
  78. mvn deploy
  79. -->
  80. <repository>
  81. <id>jboss-releases-repository</id>
  82. <name>JBoss Releases Repository</name>
  83. <url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</url>
  84. </repository>
  85. <snapshotRepository>
  86. <id>jboss-snapshots-repository</id>
  87. <name>JBoss Snapshots Repository</name>
  88. <url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url>
  89. </snapshotRepository>
  90. </distributionManagement>
  91. <build>
  92. <sourceDirectory>src/main/</sourceDirectory>
  93. <testSourceDirectory>src/test/</testSourceDirectory>
  94. <plugins>
  95. <plugin>
  96. <groupId>org.apache.maven.plugins</groupId>
  97. <artifactId>maven-compiler-plugin</artifactId>
  98. <configuration>
  99. <source>1.4</source>
  100. <target>1.4</target>
  101. </configuration>
  102. </plugin>
  103. <plugin>
  104. <groupId>org.apache.maven.plugins</groupId>
  105. <artifactId>maven-jar-plugin</artifactId>
  106. <configuration>
  107. <archive>
  108. <manifestFile>${project.build.sourceDirectory}/META-INF/MANIFEST.MF</manifestFile>
  109. </archive>
  110. </configuration>
  111. </plugin>
  112. <plugin>
  113. <artifactId>maven-source-plugin</artifactId>
  114. <version>2.0.3</version>
  115. <executions>
  116. <execution>
  117. <id>attach-sources</id>
  118. <goals>
  119. <goal>jar</goal>
  120. </goals>
  121. </execution>
  122. </executions>
  123. <inherited>true</inherited>
  124. </plugin>
  125. </plugins>
  126. </build>
  127. <!--profiles>
  128. <profile>
  129. <id>jdk14</id>
  130. <activation>
  131. <jdk>1.4</jdk>
  132. <property>
  133. <name>!no.tools</name>
  134. </property>
  135. </activation>
  136. <dependencies>
  137. <dependency>
  138. <groupId>com.sun</groupId>
  139. <artifactId>tools</artifactId>
  140. <version>1.4</version>
  141. <scope>system</scope>
  142. <optional>true</optional>
  143. <systemPath>${java.home}/../lib/tools.jar</systemPath>
  144. </dependency>
  145. </dependencies>
  146. </profile>
  147. <profile>
  148. <id>jdk15</id>
  149. <activation>
  150. <jdk>1.5</jdk>
  151. <property>
  152. <name>!no.tools</name>
  153. </property>
  154. </activation>
  155. <dependencies>
  156. <dependency>
  157. <groupId>com.sun</groupId>
  158. <artifactId>tools</artifactId>
  159. <version>1.5</version>
  160. <scope>system</scope>
  161. <optional>true</optional>
  162. <systemPath>${java.home}/../lib/tools.jar</systemPath>
  163. </dependency>
  164. </dependencies>
  165. </profile>
  166. <profile>
  167. <id>jdk16</id>
  168. <activation>
  169. <jdk>1.6</jdk>
  170. <property>
  171. <name>!no.tools</name>
  172. </property>
  173. </activation>
  174. <dependencies>
  175. <dependency>
  176. <groupId>com.sun</groupId>
  177. <artifactId>tools</artifactId>
  178. <version>1.6</version>
  179. <scope>system</scope>
  180. <optional>true</optional>
  181. <systemPath>${java.home}/../lib/tools.jar</systemPath>
  182. </dependency>
  183. </dependencies>
  184. </profile>
  185. </profiles-->
  186. <dependencies>
  187. <dependency>
  188. <groupId>junit</groupId>
  189. <artifactId>junit</artifactId>
  190. <version>3.8.1</version>
  191. <scope>test</scope>
  192. </dependency>
  193. </dependencies>
  194. </project>