pom.xml 10 KB

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