pom.xml 10 KB

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