pom.xml 12 KB

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