pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  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.3.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. <assira.junit.debug>false</assira.junit.debug>
  15. <assira.junit.log>debug</assira.junit.log>
  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.junit</module>
  26. <module>assira.rules</module>
  27. <module>assira.rules.test</module>
  28. <module>assira.test</module>
  29. <module>assira.drafts</module>
  30. <module>assira</module>
  31. <module>assira.all</module>
  32. <module>assira.archetype</module>
  33. <module>assira.enterprise</module>
  34. </modules>
  35. <profiles>
  36. <profile>
  37. <id>asm</id>
  38. <modules>
  39. <module>assira.asm</module>
  40. </modules>
  41. </profile>
  42. <profile>
  43. <id>jdk8</id>
  44. <activation>
  45. <jdk>1.8</jdk>
  46. </activation>
  47. <modules>
  48. <module>assira.jdk8</module>
  49. </modules>
  50. </profile>
  51. <profile>
  52. <id>jdk11</id>
  53. <activation>
  54. <jdk>11</jdk>
  55. </activation>
  56. <modules>
  57. <module>assira.jdk11</module>
  58. <module>assira.lambda</module>
  59. <module>assira.benchmark</module>
  60. </modules>
  61. </profile>
  62. </profiles>
  63. <distributionManagement>
  64. <repository>
  65. <id>maven.ranides.net</id>
  66. <name>maven.ranides.net</name>
  67. <url>ftp://maven.ranides.net/</url>
  68. </repository>
  69. </distributionManagement>
  70. <repositories>
  71. <repository>
  72. <id>ranides.net</id>
  73. <name>ranides.net</name>
  74. <url>http://maven.ranides.net</url>
  75. </repository>
  76. </repositories>
  77. <build>
  78. <extensions>
  79. <extension>
  80. <groupId>org.apache.maven.wagon</groupId>
  81. <artifactId>wagon-ftp</artifactId>
  82. <version>1.0</version>
  83. </extension>
  84. </extensions>
  85. <plugins>
  86. <plugin>
  87. <groupId>org.apache.maven.plugins</groupId>
  88. <artifactId>maven-compiler-plugin</artifactId>
  89. <version>3.8.1</version>
  90. <configuration>
  91. <source>${maven.compiler.source}</source>
  92. <target>${maven.compiler.target}</target>
  93. <compilerArgument>-Xlint:unchecked</compilerArgument>
  94. <compilerArgument>-parameters</compilerArgument>
  95. </configuration>
  96. </plugin>
  97. <plugin>
  98. <groupId>org.apache.maven.plugins</groupId>
  99. <artifactId>maven-source-plugin</artifactId>
  100. <version>2.2.1</version>
  101. <executions>
  102. <execution>
  103. <id>attach-sources</id>
  104. <goals>
  105. <goal>jar-no-fork</goal>
  106. </goals>
  107. </execution>
  108. </executions>
  109. </plugin>
  110. <plugin>
  111. <groupId>org.apache.maven.plugins</groupId>
  112. <artifactId>maven-javadoc-plugin</artifactId>
  113. <version>2.9</version>
  114. <executions>
  115. <execution>
  116. <id>javadocs-site</id>
  117. <phase>site</phase>
  118. <goals>
  119. <goal>javadoc</goal>
  120. </goals>
  121. </execution>
  122. </executions>
  123. <configuration>
  124. <links>
  125. <link>http://docs.oracle.com/javase/7/docs/api/</link>
  126. </links>
  127. <version>true</version>
  128. <show>public</show>
  129. </configuration>
  130. </plugin>
  131. <plugin>
  132. <groupId>org.apache.maven.plugins</groupId>
  133. <artifactId>maven-pmd-plugin</artifactId>
  134. <version>3.5</version>
  135. <configuration>
  136. <rulesets>
  137. <ruleset>rulesets/java/assira.xml</ruleset>
  138. </rulesets>
  139. </configuration>
  140. <dependencies>
  141. <dependency>
  142. <groupId>net.ranides</groupId>
  143. <artifactId>assira.rules</artifactId>
  144. <version>${project.version}</version>
  145. </dependency>
  146. </dependencies>
  147. </plugin>
  148. <plugin>
  149. <groupId>org.jacoco</groupId>
  150. <artifactId>jacoco-maven-plugin</artifactId>
  151. <version>0.8.4</version>
  152. <executions>
  153. <execution>
  154. <id>default-prepare-agent</id>
  155. <goals>
  156. <goal>prepare-agent</goal>
  157. </goals>
  158. </execution>
  159. <execution>
  160. <id>default-report</id>
  161. <goals>
  162. <goal>report</goal>
  163. </goals>
  164. </execution>
  165. </executions>
  166. </plugin>
  167. <plugin>
  168. <groupId>org.apache.maven.plugins</groupId>
  169. <artifactId>maven-surefire-plugin</artifactId>
  170. <version>2.19.1</version>
  171. <configuration>
  172. <systemPropertyVariables>
  173. <assira.junit.debug>${assira.junit.debug}</assira.junit.debug>
  174. <assira.version>${project.version}</assira.version>
  175. <assira.junit.log>${assira.junit.log}</assira.junit.log>
  176. </systemPropertyVariables>
  177. <testFailureIgnore>false</testFailureIgnore>
  178. <skip>false</skip>
  179. </configuration>
  180. </plugin>
  181. <plugin>
  182. <groupId>org.apache.maven.plugins</groupId>
  183. <artifactId>maven-jxr-plugin</artifactId>
  184. <version>2.3</version>
  185. </plugin>
  186. </plugins>
  187. </build>
  188. <reporting>
  189. <plugins>
  190. <plugin>
  191. <groupId>org.apache.maven.plugins</groupId>
  192. <artifactId>maven-javadoc-plugin</artifactId>
  193. <version>2.9</version>
  194. </plugin>
  195. <plugin>
  196. <groupId>org.apache.maven.plugins</groupId>
  197. <artifactId>maven-jxr-plugin</artifactId>
  198. <version>2.3</version>
  199. </plugin>
  200. </plugins>
  201. </reporting>
  202. <dependencyManagement>
  203. <dependencies>
  204. <dependency>
  205. <groupId>net.ranides</groupId>
  206. <artifactId>assira</artifactId>
  207. <version>${project.version}</version>
  208. </dependency>
  209. <dependency>
  210. <groupId>net.ranides</groupId>
  211. <artifactId>assira.asm</artifactId>
  212. <version>7.2</version>
  213. </dependency>
  214. <dependency>
  215. <groupId>net.ranides</groupId>
  216. <artifactId>assira.jdk8</artifactId>
  217. <version>${project.version}</version>
  218. <scope>runtime</scope>
  219. </dependency>
  220. <dependency>
  221. <groupId>net.ranides</groupId>
  222. <artifactId>assira.jdk11</artifactId>
  223. <version>${project.version}</version>
  224. <scope>runtime</scope>
  225. </dependency>
  226. <dependency>
  227. <groupId>net.ranides</groupId>
  228. <artifactId>assira.junit</artifactId>
  229. <version>${project.version}</version>
  230. <scope>test</scope>
  231. </dependency>
  232. <dependency>
  233. <groupId>junit</groupId>
  234. <artifactId>junit</artifactId>
  235. <version>4.12</version>
  236. <scope>test</scope>
  237. </dependency>
  238. <dependency>
  239. <groupId>org.slf4j</groupId>
  240. <artifactId>slf4j-api</artifactId>
  241. <version>1.7.13</version>
  242. </dependency>
  243. <dependency>
  244. <groupId>org.slf4j</groupId>
  245. <artifactId>slf4j-simple</artifactId>
  246. <version>1.7.13</version>
  247. <scope>test</scope>
  248. </dependency>
  249. <dependency>
  250. <groupId>net.sourceforge.pmd</groupId>
  251. <artifactId>pmd-java</artifactId>
  252. <version>5.3.3</version>
  253. </dependency>
  254. <dependency>
  255. <groupId>com.google.code.findbugs</groupId>
  256. <artifactId>annotations</artifactId>
  257. <version>3.0.1u2</version>
  258. <scope>provided</scope>
  259. </dependency>
  260. <dependency>
  261. <groupId>com.fasterxml.jackson.core</groupId>
  262. <artifactId>jackson-core</artifactId>
  263. <version>2.9.9</version>
  264. </dependency>
  265. <dependency>
  266. <groupId>com.fasterxml.jackson.core</groupId>
  267. <artifactId>jackson-databind</artifactId>
  268. <version>2.9.9.3</version>
  269. </dependency>
  270. <dependency>
  271. <groupId>com.fasterxml.jackson.datatype</groupId>
  272. <artifactId>jackson-datatype-json-org</artifactId>
  273. <version>2.9.9</version>
  274. </dependency>
  275. <dependency>
  276. <groupId>com.fasterxml.jackson.datatype</groupId>
  277. <artifactId>jackson-datatype-jsr310</artifactId>
  278. <version>2.9.9</version>
  279. </dependency>
  280. <dependency>
  281. <groupId>se.fishtank</groupId>
  282. <artifactId>css-selectors</artifactId>
  283. <version>2.0</version>
  284. </dependency>
  285. <dependency>
  286. <groupId>io.jsonwebtoken</groupId>
  287. <artifactId>jjwt</artifactId>
  288. <version>0.9.0</version>
  289. </dependency>
  290. <dependency>
  291. <groupId>org.projectlombok</groupId>
  292. <artifactId>lombok</artifactId>
  293. <version>1.18.8</version>
  294. <scope>provided</scope>
  295. </dependency>
  296. </dependencies>
  297. </dependencyManagement>
  298. </project>