pom.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  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>3.3.1</version>
  116. <executions>
  117. <execution>
  118. <id>attach-javadocs</id>
  119. <goals>
  120. <goal>jar</goal>
  121. </goals>
  122. </execution>
  123. </executions>
  124. <configuration>
  125. <version>true</version>
  126. <show>public</show>
  127. <doclint>none</doclint>
  128. </configuration>
  129. </plugin>
  130. <plugin>
  131. <groupId>org.apache.maven.plugins</groupId>
  132. <artifactId>maven-gpg-plugin</artifactId>
  133. <version>1.5</version>
  134. <executions>
  135. <execution>
  136. <id>sign-artifacts</id>
  137. <phase>verify</phase>
  138. <goals>
  139. <goal>sign</goal>
  140. </goals>
  141. </execution>
  142. </executions>
  143. </plugin>
  144. <plugin>
  145. <groupId>org.apache.maven.plugins</groupId>
  146. <artifactId>maven-pmd-plugin</artifactId>
  147. <version>3.5</version>
  148. <configuration>
  149. <rulesets>
  150. <ruleset>rulesets/java/assira.xml</ruleset>
  151. </rulesets>
  152. </configuration>
  153. <dependencies>
  154. <dependency>
  155. <groupId>net.ranides</groupId>
  156. <artifactId>assira.rules</artifactId>
  157. <version>${assira.version}</version>
  158. </dependency>
  159. </dependencies>
  160. </plugin>
  161. <plugin>
  162. <groupId>org.jacoco</groupId>
  163. <artifactId>jacoco-maven-plugin</artifactId>
  164. <version>0.8.4</version>
  165. <executions>
  166. <execution>
  167. <id>default-prepare-agent</id>
  168. <goals>
  169. <goal>prepare-agent</goal>
  170. </goals>
  171. </execution>
  172. <execution>
  173. <id>default-report</id>
  174. <goals>
  175. <goal>report</goal>
  176. </goals>
  177. </execution>
  178. </executions>
  179. </plugin>
  180. <plugin>
  181. <groupId>org.apache.maven.plugins</groupId>
  182. <artifactId>maven-surefire-plugin</artifactId>
  183. <version>2.19.1</version>
  184. <configuration>
  185. <systemPropertyVariables>
  186. <assira.junit.debug>${assira.junit.debug}</assira.junit.debug>
  187. <assira.version>${assira.version}</assira.version>
  188. <assira.junit.log>${assira.junit.log}</assira.junit.log>
  189. </systemPropertyVariables>
  190. <testFailureIgnore>false</testFailureIgnore>
  191. <skip>false</skip>
  192. </configuration>
  193. </plugin>
  194. <plugin>
  195. <groupId>org.apache.maven.plugins</groupId>
  196. <artifactId>maven-jxr-plugin</artifactId>
  197. <version>2.3</version>
  198. </plugin>
  199. </plugins>
  200. </build>
  201. <reporting>
  202. <plugins>
  203. <plugin>
  204. <groupId>org.apache.maven.plugins</groupId>
  205. <artifactId>maven-javadoc-plugin</artifactId>
  206. <version>2.9</version>
  207. </plugin>
  208. <plugin>
  209. <groupId>org.apache.maven.plugins</groupId>
  210. <artifactId>maven-jxr-plugin</artifactId>
  211. <version>2.3</version>
  212. </plugin>
  213. </plugins>
  214. </reporting>
  215. <dependencyManagement>
  216. <dependencies>
  217. <dependency>
  218. <groupId>net.ranides</groupId>
  219. <artifactId>assira.core</artifactId>
  220. <version>${assira.version}</version>
  221. </dependency>
  222. <dependency>
  223. <groupId>net.ranides</groupId>
  224. <artifactId>assira.core8</artifactId>
  225. <version>${assira.version}</version>
  226. </dependency>
  227. <dependency>
  228. <groupId>net.ranides</groupId>
  229. <artifactId>assira.core11</artifactId>
  230. <version>${assira.version}</version>
  231. </dependency>
  232. <dependency>
  233. <groupId>net.ranides</groupId>
  234. <artifactId>assira.asm</artifactId>
  235. <version>7.2</version>
  236. </dependency>
  237. <dependency>
  238. <groupId>net.ranides</groupId>
  239. <artifactId>assira.jdk8</artifactId>
  240. <version>${assira.version}</version>
  241. <scope>runtime</scope>
  242. </dependency>
  243. <dependency>
  244. <groupId>net.ranides</groupId>
  245. <artifactId>assira.jdk11</artifactId>
  246. <version>${assira.version}</version>
  247. <scope>runtime</scope>
  248. </dependency>
  249. <dependency>
  250. <groupId>net.ranides</groupId>
  251. <artifactId>assira.junit</artifactId>
  252. <version>${assira.version}</version>
  253. <scope>test</scope>
  254. </dependency>
  255. <dependency>
  256. <groupId>net.ranides</groupId>
  257. <artifactId>assira.lambda</artifactId>
  258. <version>${assira.version}</version>
  259. </dependency>
  260. <dependency>
  261. <groupId>junit</groupId>
  262. <artifactId>junit</artifactId>
  263. <version>4.12</version>
  264. <scope>test</scope>
  265. </dependency>
  266. <dependency>
  267. <groupId>org.slf4j</groupId>
  268. <artifactId>slf4j-api</artifactId>
  269. <version>1.7.13</version>
  270. </dependency>
  271. <dependency>
  272. <groupId>org.slf4j</groupId>
  273. <artifactId>slf4j-simple</artifactId>
  274. <version>1.7.13</version>
  275. <scope>test</scope>
  276. </dependency>
  277. <dependency>
  278. <groupId>net.sourceforge.pmd</groupId>
  279. <artifactId>pmd-java</artifactId>
  280. <version>5.3.3</version>
  281. </dependency>
  282. <dependency>
  283. <groupId>com.google.code.findbugs</groupId>
  284. <artifactId>annotations</artifactId>
  285. <version>3.0.1u2</version>
  286. <scope>provided</scope>
  287. </dependency>
  288. <dependency>
  289. <groupId>com.fasterxml.jackson.core</groupId>
  290. <artifactId>jackson-core</artifactId>
  291. <version>2.9.9</version>
  292. </dependency>
  293. <dependency>
  294. <groupId>com.fasterxml.jackson.core</groupId>
  295. <artifactId>jackson-databind</artifactId>
  296. <version>2.9.9.3</version>
  297. </dependency>
  298. <dependency>
  299. <groupId>com.fasterxml.jackson.datatype</groupId>
  300. <artifactId>jackson-datatype-json-org</artifactId>
  301. <version>2.9.9</version>
  302. </dependency>
  303. <dependency>
  304. <groupId>com.fasterxml.jackson.datatype</groupId>
  305. <artifactId>jackson-datatype-jsr310</artifactId>
  306. <version>2.9.9</version>
  307. </dependency>
  308. <dependency>
  309. <groupId>se.fishtank</groupId>
  310. <artifactId>css-selectors</artifactId>
  311. <version>2.0</version>
  312. </dependency>
  313. <dependency>
  314. <groupId>io.jsonwebtoken</groupId>
  315. <artifactId>jjwt</artifactId>
  316. <version>0.9.0</version>
  317. </dependency>
  318. <dependency>
  319. <groupId>org.projectlombok</groupId>
  320. <artifactId>lombok</artifactId>
  321. <version>1.18.20</version>
  322. <scope>provided</scope>
  323. </dependency>
  324. </dependencies>
  325. </dependencyManagement>
  326. </project>