pom.xml 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>net.ranides</groupId>
  5. <artifactId>assira</artifactId>
  6. <version>0.56</version>
  7. <packaging>jar</packaging>
  8. <name>assira</name>
  9. <url>http://ranides.net/projects/assira</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <netbeans.hint.license>WTFPL</netbeans.hint.license>
  13. <project.test.memory>512m</project.test.memory>
  14. </properties>
  15. <distributionManagement>
  16. <repository>
  17. <id>maven.ranides.net</id>
  18. <name>maven.ranides.net</name>
  19. <url>ftp://ftp2.ranides.net/</url>
  20. </repository>
  21. </distributionManagement>
  22. <build>
  23. <extensions>
  24. <extension>
  25. <groupId>org.apache.maven.wagon</groupId>
  26. <artifactId>wagon-ftp</artifactId>
  27. <version>1.0</version>
  28. </extension>
  29. </extensions>
  30. <plugins>
  31. <plugin>
  32. <groupId>org.apache.maven.plugins</groupId>
  33. <artifactId>maven-compiler-plugin</artifactId>
  34. <version>2.3.2</version>
  35. <configuration>
  36. <source>1.6</source>
  37. <target>1.6</target>
  38. <compilerArgument>-Xlint:unchecked</compilerArgument>
  39. <compilerArgument>-proc:none</compilerArgument>
  40. </configuration>
  41. </plugin>
  42. <plugin>
  43. <groupId>org.apache.maven.plugins</groupId>
  44. <artifactId>maven-pmd-plugin</artifactId>
  45. <version>2.7.1</version>
  46. <configuration>
  47. <rulesets>
  48. <ruleset>http://ranides.net/projects/pmd/assira.custom.xml</ruleset>
  49. <ruleset>http://ranides.net/projects/pmd/assira.standard.xml</ruleset>
  50. </rulesets>
  51. </configuration>
  52. </plugin>
  53. <plugin>
  54. <groupId>org.codehaus.mojo</groupId>
  55. <artifactId>cobertura-maven-plugin</artifactId>
  56. <version>2.5.2</version>
  57. </plugin>
  58. <plugin>
  59. <groupId>org.apache.maven.plugins</groupId>
  60. <artifactId>maven-javadoc-plugin</artifactId>
  61. <version>2.9</version>
  62. <executions>
  63. <execution>
  64. <id>javadocs-site</id>
  65. <phase>site</phase>
  66. <goals>
  67. <goal>javadoc</goal>
  68. </goals>
  69. </execution>
  70. </executions>
  71. <configuration>
  72. <links>
  73. <link>http://download.oracle.com/javase/1.6.0/docs/api/</link>
  74. </links>
  75. <version>true</version>
  76. <show>public</show>
  77. </configuration>
  78. </plugin>
  79. <plugin>
  80. <groupId>org.apache.maven.plugins</groupId>
  81. <artifactId>maven-source-plugin</artifactId>
  82. <version>2.2.1</version>
  83. <executions>
  84. <execution>
  85. <id>attach-sources</id>
  86. <goals>
  87. <goal>jar-no-fork</goal>
  88. </goals>
  89. </execution>
  90. </executions>
  91. </plugin>
  92. <plugin>
  93. <groupId>org.apache.maven.plugins</groupId>
  94. <artifactId>maven-surefire-plugin</artifactId>
  95. <version>2.13</version>
  96. <configuration>
  97. <argLine>-Xmx${project.test.memory}</argLine>
  98. <testFailureIgnore>false</testFailureIgnore>
  99. <skip>false</skip>
  100. </configuration>
  101. </plugin>
  102. </plugins>
  103. </build>
  104. <reporting>
  105. <plugins>
  106. <plugin>
  107. <groupId>org.apache.maven.plugins</groupId>
  108. <artifactId>maven-javadoc-plugin</artifactId>
  109. <version>2.9</version>
  110. </plugin>
  111. </plugins>
  112. </reporting>
  113. <repositories>
  114. <repository>
  115. <id>ranides.net</id>
  116. <name>ranides.net</name>
  117. <url>http://maven.ranides.net</url>
  118. </repository>
  119. </repositories>
  120. <dependencies>
  121. <dependency>
  122. <groupId>log4j</groupId>
  123. <artifactId>log4j</artifactId>
  124. <version>1.2.16</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>commons-collections</groupId>
  128. <artifactId>commons-collections</artifactId>
  129. <version>3.2.1</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>junit</groupId>
  133. <artifactId>junit</artifactId>
  134. <version>4.10</version>
  135. <scope>test</scope>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.apache.commons</groupId>
  139. <artifactId>commons-lang3</artifactId>
  140. <version>3.1</version>
  141. <scope>test</scope>
  142. </dependency>
  143. <dependency>
  144. <groupId>com.fasterxml.jackson.core</groupId>
  145. <artifactId>jackson-core</artifactId>
  146. <version>2.0.1</version>
  147. <type>jar</type>
  148. </dependency>
  149. <dependency>
  150. <groupId>com.fasterxml.jackson.datatype</groupId>
  151. <artifactId>jackson-datatype-json-org</artifactId>
  152. <version>2.0.0</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>net.ranides</groupId>
  156. <artifactId>caliper</artifactId>
  157. <version>1.0L</version>
  158. <scope>test</scope>
  159. </dependency>
  160. <dependency>
  161. <groupId>net.ranides</groupId>
  162. <artifactId>assira.asm</artifactId>
  163. <version>4.2</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>findbugs</groupId>
  167. <artifactId>annotations</artifactId>
  168. <version>1.0.0</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>eu.vitaliy</groupId>
  172. <artifactId>mazovia-charset</artifactId>
  173. <version>1.0</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>joda-time</groupId>
  177. <artifactId>joda-time</artifactId>
  178. <version>2.1</version>
  179. </dependency>
  180. </dependencies>
  181. </project>