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.

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