pom.xml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  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. <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.rules.test</module>
  31. <module>../assira.test</module>
  32. <module>../assira.drafts</module>
  33. <module>../assira.benchmark</module>
  34. <module>../assira</module>
  35. </modules>
  36. <distributionManagement>
  37. <repository>
  38. <id>maven.ranides.net</id>
  39. <name>maven.ranides.net</name>
  40. <url>ftp://maven.ranides.net/</url>
  41. </repository>
  42. </distributionManagement>
  43. <repositories>
  44. <repository>
  45. <id>ranides.net</id>
  46. <name>ranides.net</name>
  47. <url>http://maven.ranides.net</url>
  48. </repository>
  49. </repositories>
  50. <build>
  51. <extensions>
  52. <extension>
  53. <groupId>org.apache.maven.wagon</groupId>
  54. <artifactId>wagon-ftp</artifactId>
  55. <version>1.0</version>
  56. </extension>
  57. </extensions>
  58. <plugins>
  59. <plugin>
  60. <groupId>org.apache.maven.plugins</groupId>
  61. <artifactId>maven-compiler-plugin</artifactId>
  62. <version>2.3.2</version>
  63. <configuration>
  64. <source>${maven.compiler.source}</source>
  65. <target>${maven.compiler.target}</target>
  66. <compilerArgument>-Xlint:unchecked</compilerArgument>
  67. <compilerArgument>-parameters</compilerArgument>
  68. </configuration>
  69. </plugin>
  70. <plugin>
  71. <groupId>org.apache.maven.plugins</groupId>
  72. <artifactId>maven-source-plugin</artifactId>
  73. <version>2.2.1</version>
  74. <executions>
  75. <execution>
  76. <id>attach-sources</id>
  77. <goals>
  78. <goal>jar-no-fork</goal>
  79. </goals>
  80. </execution>
  81. </executions>
  82. </plugin>
  83. <plugin>
  84. <groupId>org.apache.maven.plugins</groupId>
  85. <artifactId>maven-javadoc-plugin</artifactId>
  86. <version>2.9</version>
  87. <executions>
  88. <execution>
  89. <id>javadocs-site</id>
  90. <phase>site</phase>
  91. <goals>
  92. <goal>javadoc</goal>
  93. </goals>
  94. </execution>
  95. </executions>
  96. <configuration>
  97. <links>
  98. <link>http://docs.oracle.com/javase/7/docs/api/</link>
  99. </links>
  100. <version>true</version>
  101. <show>public</show>
  102. </configuration>
  103. </plugin>
  104. <plugin>
  105. <groupId>org.apache.maven.plugins</groupId>
  106. <artifactId>maven-pmd-plugin</artifactId>
  107. <version>3.5</version>
  108. <configuration>
  109. <rulesets>
  110. <ruleset>rulesets/java/assira.xml</ruleset>
  111. </rulesets>
  112. </configuration>
  113. <dependencies>
  114. <dependency>
  115. <groupId>net.ranides</groupId>
  116. <artifactId>assira.rules</artifactId>
  117. <version>${assira.rules.version}</version>
  118. </dependency>
  119. </dependencies>
  120. </plugin>
  121. <plugin>
  122. <groupId>org.jacoco</groupId>
  123. <artifactId>jacoco-maven-plugin</artifactId>
  124. <version>0.7.5.201505241946</version>
  125. <configuration>
  126. <propertyName>project.argLine</propertyName>
  127. </configuration>
  128. <executions>
  129. <execution>
  130. <goals>
  131. <goal>prepare-agent</goal>
  132. </goals>
  133. </execution>
  134. <execution>
  135. <id>report</id>
  136. <phase>prepare-package</phase>
  137. <goals>
  138. <goal>report</goal>
  139. </goals>
  140. </execution>
  141. </executions>
  142. </plugin>
  143. <plugin>
  144. <groupId>org.apache.maven.plugins</groupId>
  145. <artifactId>maven-surefire-plugin</artifactId>
  146. <version>2.18.1</version>
  147. <configuration>
  148. <argLine>-Dassira.junit.debug=@{assira.junit.debug} -Dfile.encoding=${project.build.sourceEncoding} @{project.argLine} -Xmx@{project.test.memory}</argLine>
  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>2.1.0</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>2.1.0</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-simple</artifactId>
  206. <version>1.7.13</version>
  207. <scope>test</scope>
  208. </dependency>
  209. <dependency>
  210. <groupId>net.sourceforge.pmd</groupId>
  211. <artifactId>pmd-java</artifactId>
  212. <version>5.3.3</version>
  213. </dependency>
  214. <dependency>
  215. <groupId>com.google.code.findbugs</groupId>
  216. <artifactId>annotations</artifactId>
  217. <version>3.0.1u2</version>
  218. <scope>provided</scope>
  219. </dependency>
  220. <dependency>
  221. <groupId>com.fasterxml.jackson.core</groupId>
  222. <artifactId>jackson-core</artifactId>
  223. <version>2.0.1</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>com.fasterxml.jackson.datatype</groupId>
  227. <artifactId>jackson-datatype-json-org</artifactId>
  228. <version>2.0.0</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>se.fishtank</groupId>
  232. <artifactId>css-selectors</artifactId>
  233. <version>2.0</version>
  234. </dependency>
  235. </dependencies>
  236. </dependencyManagement>
  237. </project>