pom.xml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project>
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.akathist.maven.plugins.launch4j</groupId>
  5. <artifactId>launch4j-maven-plugin</artifactId>
  6. <packaging>maven-plugin</packaging>
  7. <name>Maven Launch4j Plugin</name>
  8. <version>1.1-inhouse</version>
  9. <description>This plugin creates Windows executables from Java jar files using the Launch4j utility.</description>
  10. <url>http://9stmaryrd.com/tools/launch4j-maven-plugin/</url>
  11. <licenses>
  12. <license>
  13. <name>GNU General Public License</name>
  14. <url>http://www.gnu.org/licenses/gpl.txt</url>
  15. <distribution>repo</distribution>
  16. </license>
  17. </licenses>
  18. <build>
  19. <extensions>
  20. <extension>
  21. <groupId>org.apache.maven.wagon</groupId>
  22. <artifactId>wagon-ftp</artifactId>
  23. <version>1.0-beta-1</version>
  24. </extension>
  25. </extensions>
  26. <plugins>
  27. <plugin>
  28. <artifactId>maven-antrun-plugin</artifactId>
  29. <executions>
  30. <execution>
  31. <id>copy</id>
  32. <phase>process-classes</phase>
  33. <goals>
  34. <goal>run</goal>
  35. </goals>
  36. <configuration>
  37. <tasks>
  38. <copy file="README" todir="target/classes"/>
  39. <copy file="LICENSE" todir="target/classes"/>
  40. </tasks>
  41. </configuration>
  42. </execution>
  43. </executions>
  44. </plugin>
  45. <plugin>
  46. <artifactId>maven-assembly-plugin</artifactId>
  47. <executions>
  48. <execution>
  49. <id>assemble-workdir</id>
  50. <phase>package</phase>
  51. <goals>
  52. <goal>attached</goal>
  53. </goals>
  54. <configuration>
  55. <descriptors>
  56. <descriptor>src/main/assembly/assemble-linux.xml</descriptor>
  57. <descriptor>src/main/assembly/assemble-win32.xml</descriptor>
  58. <descriptor>src/main/assembly/assemble-mac.xml</descriptor>
  59. <descriptor>src/main/assembly/assemble-solaris.xml</descriptor>
  60. </descriptors>
  61. </configuration>
  62. </execution>
  63. <execution>
  64. <id>dist-src</id>
  65. <phase>package</phase>
  66. <goals>
  67. <goal>attached</goal>
  68. </goals>
  69. <configuration>
  70. <descriptors>
  71. <descriptor>src/main/assembly/src.xml</descriptor>
  72. </descriptors>
  73. </configuration>
  74. </execution>
  75. </executions>
  76. </plugin>
  77. </plugins>
  78. </build>
  79. <dependencies>
  80. <dependency>
  81. <groupId>org.apache.maven</groupId>
  82. <artifactId>maven-plugin-api</artifactId>
  83. <version>[2.0,)</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.maven</groupId>
  87. <artifactId>maven-artifact</artifactId>
  88. <version>[2.0.4,)</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.apache.maven</groupId>
  92. <artifactId>maven-project</artifactId>
  93. <version>[2.0.4,)</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.maven</groupId>
  97. <artifactId>maven-plugin-descriptor</artifactId>
  98. <version>[2.0.4,)</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>commons-beanutils</groupId>
  102. <artifactId>commons-beanutils</artifactId>
  103. <version>[1.7.0,)</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>commons-logging</groupId>
  107. <artifactId>commons-logging</artifactId>
  108. <version>[1.0.4,)</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>ant</groupId>
  112. <artifactId>ant</artifactId>
  113. <version>[1.6.5,)</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>foxtrot</groupId>
  117. <artifactId>foxtrot</artifactId>
  118. <version>[2.0,)</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.thoughtworks.xstream</groupId>
  122. <artifactId>xstream</artifactId>
  123. <version>[1.1.3,)</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.codehaus.plexus</groupId>
  127. <artifactId>plexus-archiver</artifactId>
  128. <version>[1.0-alpha-6,1.0-alpha-7]</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>junit</groupId>
  132. <artifactId>junit</artifactId>
  133. <version>[3.8.1,)</version>
  134. <scope>test</scope>
  135. </dependency>
  136. </dependencies>
  137. <reporting>
  138. <plugins>
  139. <plugin>
  140. <artifactId>maven-project-info-reports-plugin</artifactId>
  141. <reportSets>
  142. <reportSet>
  143. <reports>
  144. <report>index</report>
  145. <report>summary</report>
  146. <report>license</report>
  147. <report>dependencies</report>
  148. </reports>
  149. </reportSet>
  150. </reportSets>
  151. </plugin>
  152. <plugin>
  153. <artifactId>maven-javadoc-plugin</artifactId>
  154. </plugin>
  155. <plugin>
  156. <artifactId>maven-surefire-report-plugin</artifactId>
  157. </plugin>
  158. </plugins>
  159. </reporting>
  160. <distributionManagement>
  161. <repository>
  162. <id>akathist-repository</id>
  163. <name>Akathist Repository</name>
  164. <url>ftp://ftp.9stmaryrd.com/public_html/maven</url>
  165. </repository>
  166. </distributionManagement>
  167. </project>