pom.xml 10 KB

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