pom.xml 9.9 KB

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