pom.xml 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>net.ranides</groupId>
  5. <artifactId>assira.common</artifactId>
  6. <version>2.0.1</version>
  7. <packaging>pom</packaging>
  8. <url>http://ranides.net/projects/assira</url>
  9. <properties>
  10. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  11. <maven.compiler.source>1.8</maven.compiler.source>
  12. <maven.compiler.target>1.8</maven.compiler.target>
  13. <netbeans.hint.license>WTFPL</netbeans.hint.license>
  14. <project.argLine></project.argLine>
  15. <project.test.memory>512m</project.test.memory>
  16. <assira.junit.debug>false</assira.junit.debug>
  17. <org-netbeans-modules-editor-indent.CodeStyle.project.text-line-wrap>none</org-netbeans-modules-editor-indent.CodeStyle.project.text-line-wrap>
  18. <org-netbeans-modules-editor-indent.CodeStyle.project.indent-shift-width>4</org-netbeans-modules-editor-indent.CodeStyle.project.indent-shift-width>
  19. <org-netbeans-modules-editor-indent.CodeStyle.project.spaces-per-tab>4</org-netbeans-modules-editor-indent.CodeStyle.project.spaces-per-tab>
  20. <org-netbeans-modules-editor-indent.CodeStyle.project.tab-size>4</org-netbeans-modules-editor-indent.CodeStyle.project.tab-size>
  21. <org-netbeans-modules-editor-indent.CodeStyle.project.text-limit-width>120</org-netbeans-modules-editor-indent.CodeStyle.project.text-limit-width>
  22. <org-netbeans-modules-editor-indent.CodeStyle.project.expand-tabs>true</org-netbeans-modules-editor-indent.CodeStyle.project.expand-tabs>
  23. <org-netbeans-modules-editor-indent.CodeStyle.usedProfile>project</org-netbeans-modules-editor-indent.CodeStyle.usedProfile>
  24. </properties>
  25. <distributionManagement>
  26. <repository>
  27. <id>maven.ranides.net</id>
  28. <name>maven.ranides.net</name>
  29. <url>ftp://maven.ranides.net/</url>
  30. </repository>
  31. </distributionManagement>
  32. <repositories>
  33. <repository>
  34. <id>ranides.net</id>
  35. <name>ranides.net</name>
  36. <url>http://maven.ranides.net</url>
  37. </repository>
  38. </repositories>
  39. <build>
  40. <extensions>
  41. <extension>
  42. <groupId>org.apache.maven.wagon</groupId>
  43. <artifactId>wagon-ftp</artifactId>
  44. <version>1.0</version>
  45. </extension>
  46. </extensions>
  47. <plugins>
  48. <plugin>
  49. <groupId>org.apache.maven.plugins</groupId>
  50. <artifactId>maven-compiler-plugin</artifactId>
  51. <version>2.3.2</version>
  52. <configuration>
  53. <source>${maven.compiler.source}</source>
  54. <target>${maven.compiler.target}</target>
  55. <compilerArgument>-Xlint:unchecked</compilerArgument>
  56. <compilerArgument>-parameters</compilerArgument>
  57. </configuration>
  58. </plugin>
  59. <plugin>
  60. <groupId>org.apache.maven.plugins</groupId>
  61. <artifactId>maven-source-plugin</artifactId>
  62. <version>2.2.1</version>
  63. <executions>
  64. <execution>
  65. <id>attach-sources</id>
  66. <goals>
  67. <goal>jar-no-fork</goal>
  68. </goals>
  69. </execution>
  70. </executions>
  71. </plugin>
  72. <plugin>
  73. <groupId>org.apache.maven.plugins</groupId>
  74. <artifactId>maven-javadoc-plugin</artifactId>
  75. <version>2.9</version>
  76. <executions>
  77. <execution>
  78. <id>javadocs-site</id>
  79. <phase>site</phase>
  80. <goals>
  81. <goal>javadoc</goal>
  82. </goals>
  83. </execution>
  84. </executions>
  85. <configuration>
  86. <links>
  87. <link>http://docs.oracle.com/javase/7/docs/api/</link>
  88. </links>
  89. <version>true</version>
  90. <show>public</show>
  91. </configuration>
  92. </plugin>
  93. <plugin>
  94. <groupId>org.apache.maven.plugins</groupId>
  95. <artifactId>maven-pmd-plugin</artifactId>
  96. <version>3.5</version>
  97. <configuration>
  98. <rulesets>
  99. <ruleset>rulesets/java/assira.xml</ruleset>
  100. </rulesets>
  101. </configuration>
  102. <dependencies>
  103. <dependency>
  104. <groupId>net.ranides</groupId>
  105. <artifactId>assira.rules</artifactId>
  106. <version>2.0.1</version>
  107. </dependency>
  108. </dependencies>
  109. </plugin>
  110. <plugin>
  111. <groupId>org.jacoco</groupId>
  112. <artifactId>jacoco-maven-plugin</artifactId>
  113. <version>0.7.5.201505241946</version>
  114. <configuration>
  115. <propertyName>project.argLine</propertyName>
  116. </configuration>
  117. <executions>
  118. <execution>
  119. <goals>
  120. <goal>prepare-agent</goal>
  121. </goals>
  122. </execution>
  123. <execution>
  124. <id>report</id>
  125. <phase>prepare-package</phase>
  126. <goals>
  127. <goal>report</goal>
  128. </goals>
  129. </execution>
  130. </executions>
  131. </plugin>
  132. <plugin>
  133. <groupId>org.apache.maven.plugins</groupId>
  134. <artifactId>maven-surefire-plugin</artifactId>
  135. <version>2.18.1</version>
  136. <configuration>
  137. <argLine>-Dassira.junit.debug=@{assira.junit.debug} -Dfile.encoding=${project.build.sourceEncoding} @{project.argLine} -Xmx${project.test.memory}</argLine>
  138. <testFailureIgnore>false</testFailureIgnore>
  139. <skip>false</skip>
  140. </configuration>
  141. </plugin>
  142. <plugin>
  143. <groupId>org.apache.maven.plugins</groupId>
  144. <artifactId>maven-jxr-plugin</artifactId>
  145. <version>2.3</version>
  146. </plugin>
  147. </plugins>
  148. </build>
  149. <reporting>
  150. <plugins>
  151. <plugin>
  152. <groupId>org.apache.maven.plugins</groupId>
  153. <artifactId>maven-javadoc-plugin</artifactId>
  154. <version>2.9</version>
  155. </plugin>
  156. <plugin>
  157. <groupId>org.apache.maven.plugins</groupId>
  158. <artifactId>maven-jxr-plugin</artifactId>
  159. <version>2.3</version>
  160. </plugin>
  161. </plugins>
  162. </reporting>
  163. <dependencyManagement>
  164. <dependencies>
  165. <dependency>
  166. <groupId>net.ranides</groupId>
  167. <artifactId>assira</artifactId>
  168. <version>2.0.1</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>net.ranides</groupId>
  172. <artifactId>assira.asm</artifactId>
  173. <version>5.0.4</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>net.ranides</groupId>
  177. <artifactId>assira.junit</artifactId>
  178. <version>2.0.1</version>
  179. <scope>test</scope>
  180. </dependency>
  181. <dependency>
  182. <groupId>junit</groupId>
  183. <artifactId>junit</artifactId>
  184. <version>4.12</version>
  185. <scope>test</scope>
  186. </dependency>
  187. <dependency>
  188. <groupId>net.ranides</groupId>
  189. <artifactId>caliper</artifactId>
  190. <version>1.0L</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>org.slf4j</groupId>
  194. <artifactId>slf4j-api</artifactId>
  195. <version>1.7.13</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.slf4j</groupId>
  199. <artifactId>slf4j-simple</artifactId>
  200. <version>1.7.13</version>
  201. <scope>test</scope>
  202. </dependency>
  203. <dependency>
  204. <groupId>net.sourceforge.pmd</groupId>
  205. <artifactId>pmd-java</artifactId>
  206. <version>5.3.3</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>com.google.code.findbugs</groupId>
  210. <artifactId>annotations</artifactId>
  211. <version>3.0.1u2</version>
  212. <scope>provided</scope>
  213. </dependency>
  214. </dependencies>
  215. </dependencyManagement>
  216. </project>