Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  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>org.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.14.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. <developer>
  60. <id>kabir.khan@jboss.com</id>
  61. <name>Kabir Khan</name>
  62. <email>kabir.khan@jboss.com</email>
  63. <organization>JBoss</organization>
  64. <organizationUrl>http://www.jboss.org/</organizationUrl>
  65. <roles>
  66. <role>contributing developer</role>
  67. </roles>
  68. <timezone>0</timezone>
  69. </developer>
  70. </developers>
  71. <distributionManagement>
  72. <!--
  73. You need entries in your .m2/settings.xml like this:
  74. <servers>
  75. <server>
  76. <id>jboss-releases-repository</id>
  77. <username>your_jboss.org_username</username>
  78. <password>password</password>
  79. </server>
  80. <server>
  81. <id>jboss-snapshots-repository</id>
  82. <username>your_jboss.org_username</username>
  83. <password>password</password>
  84. </server>
  85. </servers>
  86. To deploy a snapshot, you need to run
  87. mvn deploy -Dversion=3.x.y-SNAPSHOT
  88. To deploy a release you need to change the version to 3.x.y.GA and run
  89. mvn deploy
  90. -->
  91. <repository>
  92. <id>jboss-releases-repository</id>
  93. <name>JBoss Releases Repository</name>
  94. <url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</url>
  95. </repository>
  96. <snapshotRepository>
  97. <id>jboss-snapshots-repository</id>
  98. <name>JBoss Snapshots Repository</name>
  99. <url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url>
  100. </snapshotRepository>
  101. </distributionManagement>
  102. <build>
  103. <sourceDirectory>src/main/</sourceDirectory>
  104. <testSourceDirectory>src/test/</testSourceDirectory>
  105. <plugins>
  106. <plugin>
  107. <groupId>org.apache.maven.plugins</groupId>
  108. <artifactId>maven-compiler-plugin</artifactId>
  109. <configuration>
  110. <source>1.4</source>
  111. <target>1.4</target>
  112. </configuration>
  113. </plugin>
  114. <plugin>
  115. <groupId>org.apache.maven.plugins</groupId>
  116. <artifactId>maven-jar-plugin</artifactId>
  117. <configuration>
  118. <archive>
  119. <manifestFile>${project.build.sourceDirectory}/META-INF/MANIFEST.MF</manifestFile>
  120. </archive>
  121. </configuration>
  122. </plugin>
  123. <plugin>
  124. <artifactId>maven-source-plugin</artifactId>
  125. <version>2.0.3</version>
  126. <executions>
  127. <execution>
  128. <id>attach-sources</id>
  129. <goals>
  130. <goal>jar</goal>
  131. </goals>
  132. </execution>
  133. </executions>
  134. <inherited>true</inherited>
  135. </plugin>
  136. <plugin>
  137. <groupId>org.apache.maven.plugins</groupId>
  138. <artifactId>maven-javadoc-plugin</artifactId>
  139. <version>2.7</version>
  140. <configuration>
  141. <attach>true</attach>
  142. </configuration>
  143. </plugin>
  144. </plugins>
  145. </build>
  146. <profiles>
  147. <!-- profile for releasing to sonatype repo
  148. exercise with mvn -PcentralRelease
  149. -->
  150. <profile>
  151. <id>centralRelease</id>
  152. <!-- obviously we need to use the Sonatype staging repo for upload -->
  153. <distributionManagement>
  154. <repository>
  155. <id>sonatype-releases-repository</id>
  156. <name>Sonatype Releases Repository</name>
  157. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
  158. </repository>
  159. </distributionManagement>
  160. <!-- we need to be able to sign the jars we install -->
  161. <build>
  162. <plugins>
  163. <plugin>
  164. <groupId>org.apache.maven.plugins</groupId>
  165. <artifactId>maven-gpg-plugin</artifactId>
  166. <configuration>
  167. <passphrase>${gpg.passphrase}</passphrase>
  168. <useAgent>${gpg.useAgent}</useAgent>
  169. </configuration>
  170. <executions>
  171. <execution>
  172. <id>sign-artifacts</id>
  173. <phase>verify</phase>
  174. <goals>
  175. <goal>sign</goal>
  176. </goals>
  177. </execution>
  178. </executions>
  179. </plugin>
  180. </plugins>
  181. </build>
  182. </profile>
  183. <!-- profiles to add tools jar containing com.sun.jdi code
  184. needed by sample code
  185. -->
  186. <profile>
  187. <id>jdk14</id>
  188. <activation>
  189. <jdk>1.4</jdk>
  190. <property>
  191. <name>!no.tools</name>
  192. </property>
  193. </activation>
  194. <dependencies>
  195. <dependency>
  196. <groupId>com.sun</groupId>
  197. <artifactId>tools</artifactId>
  198. <version>1.4</version>
  199. <scope>system</scope>
  200. <optional>true</optional>
  201. <systemPath>${java.home}/../lib/tools.jar</systemPath>
  202. </dependency>
  203. </dependencies>
  204. </profile>
  205. <profile>
  206. <id>jdk15</id>
  207. <activation>
  208. <jdk>1.5</jdk>
  209. <property>
  210. <name>!no.tools</name>
  211. </property>
  212. </activation>
  213. <dependencies>
  214. <dependency>
  215. <groupId>com.sun</groupId>
  216. <artifactId>tools</artifactId>
  217. <version>1.5</version>
  218. <scope>system</scope>
  219. <optional>true</optional>
  220. <systemPath>${java.home}/../lib/tools.jar</systemPath>
  221. </dependency>
  222. </dependencies>
  223. </profile>
  224. <profile>
  225. <id>jdk16</id>
  226. <activation>
  227. <jdk>1.6</jdk>
  228. <property>
  229. <name>!no.tools</name>
  230. </property>
  231. </activation>
  232. <dependencies>
  233. <dependency>
  234. <groupId>com.sun</groupId>
  235. <artifactId>tools</artifactId>
  236. <version>1.6</version>
  237. <scope>system</scope>
  238. <optional>true</optional>
  239. <systemPath>${java.home}/../lib/tools.jar</systemPath>
  240. </dependency>
  241. </dependencies>
  242. </profile>
  243. </profiles>
  244. <dependencies>
  245. <dependency>
  246. <groupId>junit</groupId>
  247. <artifactId>junit</artifactId>
  248. <version>3.8.1</version>
  249. <scope>test</scope>
  250. </dependency>
  251. </dependencies>
  252. </project>