pom.xml 13 KB

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