pom.xml 7.9 KB

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