pom.xml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  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. <module>assira.archetype</module>
  35. <module>assira.enterprise</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>${project.version}</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. <executions>
  127. <execution>
  128. <goals>
  129. <goal>prepare-agent</goal>
  130. </goals>
  131. </execution>
  132. <execution>
  133. <id>report</id>
  134. <phase>prepare-package</phase>
  135. <goals>
  136. <goal>report</goal>
  137. </goals>
  138. </execution>
  139. </executions>
  140. </plugin>
  141. <plugin>
  142. <groupId>org.apache.maven.plugins</groupId>
  143. <artifactId>maven-surefire-plugin</artifactId>
  144. <version>2.19.1</version>
  145. <configuration>
  146. <systemPropertyVariables>
  147. <assira.junit.debug>${assira.junit.debug}</assira.junit.debug>
  148. </systemPropertyVariables>
  149. <testFailureIgnore>false</testFailureIgnore>
  150. <skip>false</skip>
  151. </configuration>
  152. </plugin>
  153. <plugin>
  154. <groupId>org.apache.maven.plugins</groupId>
  155. <artifactId>maven-jxr-plugin</artifactId>
  156. <version>2.3</version>
  157. </plugin>
  158. </plugins>
  159. </build>
  160. <reporting>
  161. <plugins>
  162. <plugin>
  163. <groupId>org.apache.maven.plugins</groupId>
  164. <artifactId>maven-javadoc-plugin</artifactId>
  165. <version>2.9</version>
  166. </plugin>
  167. <plugin>
  168. <groupId>org.apache.maven.plugins</groupId>
  169. <artifactId>maven-jxr-plugin</artifactId>
  170. <version>2.3</version>
  171. </plugin>
  172. </plugins>
  173. </reporting>
  174. <dependencyManagement>
  175. <dependencies>
  176. <dependency>
  177. <groupId>net.ranides</groupId>
  178. <artifactId>assira</artifactId>
  179. <version>${project.version}</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>net.ranides</groupId>
  183. <artifactId>assira.asm</artifactId>
  184. <version>5.0.4</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>net.ranides</groupId>
  188. <artifactId>assira.junit</artifactId>
  189. <version>${project.version}</version>
  190. <scope>test</scope>
  191. </dependency>
  192. <dependency>
  193. <groupId>junit</groupId>
  194. <artifactId>junit</artifactId>
  195. <version>4.12</version>
  196. <scope>test</scope>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.slf4j</groupId>
  200. <artifactId>slf4j-api</artifactId>
  201. <version>1.7.13</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>org.slf4j</groupId>
  205. <artifactId>slf4j-nop</artifactId>
  206. <version>1.7.16</version>
  207. <scope>compile</scope>
  208. </dependency>
  209. <dependency>
  210. <groupId>org.slf4j</groupId>
  211. <artifactId>slf4j-simple</artifactId>
  212. <version>1.7.13</version>
  213. <scope>test</scope>
  214. </dependency>
  215. <dependency>
  216. <groupId>net.sourceforge.pmd</groupId>
  217. <artifactId>pmd-java</artifactId>
  218. <version>5.3.3</version>
  219. </dependency>
  220. <dependency>
  221. <groupId>com.google.code.findbugs</groupId>
  222. <artifactId>annotations</artifactId>
  223. <version>3.0.1u2</version>
  224. <scope>provided</scope>
  225. </dependency>
  226. <dependency>
  227. <groupId>com.fasterxml.jackson.core</groupId>
  228. <artifactId>jackson-core</artifactId>
  229. <version>2.0.1</version>
  230. </dependency>
  231. <dependency>
  232. <groupId>com.fasterxml.jackson.datatype</groupId>
  233. <artifactId>jackson-datatype-json-org</artifactId>
  234. <version>2.0.0</version>
  235. </dependency>
  236. <dependency>
  237. <groupId>se.fishtank</groupId>
  238. <artifactId>css-selectors</artifactId>
  239. <version>2.0</version>
  240. </dependency>
  241. </dependencies>
  242. </dependencyManagement>
  243. </project>