pom.xml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  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. <name>${project.groupId}:${project.artifactId}</name>
  9. <description>assira: general purpose java library.</description>
  10. <url>http://ranides.net/projects/assira</url>
  11. <developers>
  12. <developer>
  13. <name>Ranides Atterwim</name>
  14. <email>ranides@gmail.com</email>
  15. <organization>ranides.net</organization>
  16. <organizationUrl>https://ranides.net</organizationUrl>
  17. </developer>
  18. </developers>
  19. <licenses>
  20. <license>
  21. <name>WTFPL</name>
  22. <url>http://www.wtfpl.net</url>
  23. </license>
  24. </licenses>
  25. <scm>
  26. <connection>scm:git:https://git.ranides.net/projects/assira.git</connection>
  27. <developerConnection>scm:git:https://git.ranides.net/projects/assira.git</developerConnection>
  28. <url>https://git.ranides.net/projects/assira</url>
  29. </scm>
  30. <distributionManagement>
  31. <snapshotRepository>
  32. <id>ossrh</id>
  33. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  34. </snapshotRepository>
  35. <repository>
  36. <id>ossrh</id>
  37. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  38. </repository>
  39. </distributionManagement>
  40. <properties>
  41. <assira.version>2.7.0</assira.version>
  42. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  43. <maven.compiler.source>1.8</maven.compiler.source>
  44. <maven.compiler.target>1.8</maven.compiler.target>
  45. <netbeans.hint.license>WTFPL</netbeans.hint.license>
  46. <assira.junit.debug>false</assira.junit.debug>
  47. <assira.junit.log>debug</assira.junit.log>
  48. <org-netbeans-modules-editor-indent.CodeStyle.project.text-line-wrap>none</org-netbeans-modules-editor-indent.CodeStyle.project.text-line-wrap>
  49. <org-netbeans-modules-editor-indent.CodeStyle.project.indent-shift-width>4</org-netbeans-modules-editor-indent.CodeStyle.project.indent-shift-width>
  50. <org-netbeans-modules-editor-indent.CodeStyle.project.spaces-per-tab>4</org-netbeans-modules-editor-indent.CodeStyle.project.spaces-per-tab>
  51. <org-netbeans-modules-editor-indent.CodeStyle.project.tab-size>4</org-netbeans-modules-editor-indent.CodeStyle.project.tab-size>
  52. <org-netbeans-modules-editor-indent.CodeStyle.project.text-limit-width>120</org-netbeans-modules-editor-indent.CodeStyle.project.text-limit-width>
  53. <org-netbeans-modules-editor-indent.CodeStyle.project.expand-tabs>true</org-netbeans-modules-editor-indent.CodeStyle.project.expand-tabs>
  54. <org-netbeans-modules-editor-indent.CodeStyle.usedProfile>project</org-netbeans-modules-editor-indent.CodeStyle.usedProfile>
  55. </properties>
  56. <modules>
  57. <module>assira.junit</module>
  58. <module>assira.rules</module>
  59. <module>assira.rules.test</module>
  60. <module>assira.test</module>
  61. <module>assira.core</module>
  62. <module>assira.enterprise</module>
  63. </modules>
  64. <profiles>
  65. <profile>
  66. <id>asm</id>
  67. <modules>
  68. <module>assira.asm</module>
  69. </modules>
  70. </profile>
  71. <profile>
  72. <id>jdk8</id>
  73. <activation>
  74. <jdk>1.8</jdk>
  75. </activation>
  76. <modules>
  77. <module>assira.drafts</module>
  78. <module>assira.core8</module>
  79. <module>assira.jdk8</module>
  80. </modules>
  81. </profile>
  82. <profile>
  83. <id>jdk11</id>
  84. <activation>
  85. <jdk>11</jdk>
  86. </activation>
  87. <modules>
  88. <module>assira.core11</module>
  89. <module>assira.jdk11</module>
  90. <module>assira.lambda</module>
  91. <module>assira.debugger</module>
  92. </modules>
  93. </profile>
  94. </profiles>
  95. <build>
  96. <extensions>
  97. <extension>
  98. <groupId>org.apache.maven.wagon</groupId>
  99. <artifactId>wagon-ftp</artifactId>
  100. <version>1.0</version>
  101. </extension>
  102. </extensions>
  103. <plugins>
  104. <plugin>
  105. <groupId>org.apache.maven.plugins</groupId>
  106. <artifactId>maven-compiler-plugin</artifactId>
  107. <version>3.8.1</version>
  108. <configuration>
  109. <source>${maven.compiler.source}</source>
  110. <target>${maven.compiler.target}</target>
  111. <compilerArgument>-Xlint:unchecked</compilerArgument>
  112. <compilerArgument>-parameters</compilerArgument>
  113. </configuration>
  114. </plugin>
  115. <plugin>
  116. <groupId>org.apache.maven.plugins</groupId>
  117. <artifactId>maven-source-plugin</artifactId>
  118. <version>2.2.1</version>
  119. <executions>
  120. <execution>
  121. <id>attach-sources</id>
  122. <goals>
  123. <goal>jar-no-fork</goal>
  124. </goals>
  125. </execution>
  126. </executions>
  127. </plugin>
  128. <plugin>
  129. <groupId>org.apache.maven.plugins</groupId>
  130. <artifactId>maven-javadoc-plugin</artifactId>
  131. <version>3.3.1</version>
  132. <executions>
  133. <execution>
  134. <id>attach-javadocs</id>
  135. <goals>
  136. <goal>jar</goal>
  137. </goals>
  138. </execution>
  139. </executions>
  140. <configuration>
  141. <version>true</version>
  142. <show>public</show>
  143. <doclint>none</doclint>
  144. </configuration>
  145. </plugin>
  146. <plugin>
  147. <groupId>org.apache.maven.plugins</groupId>
  148. <artifactId>maven-gpg-plugin</artifactId>
  149. <version>1.5</version>
  150. <executions>
  151. <execution>
  152. <id>sign-artifacts</id>
  153. <phase>verify</phase>
  154. <goals>
  155. <goal>sign</goal>
  156. </goals>
  157. </execution>
  158. </executions>
  159. </plugin>
  160. <plugin>
  161. <groupId>org.apache.maven.plugins</groupId>
  162. <artifactId>maven-pmd-plugin</artifactId>
  163. <version>3.5</version>
  164. <configuration>
  165. <rulesets>
  166. <ruleset>rulesets/java/assira.xml</ruleset>
  167. </rulesets>
  168. </configuration>
  169. <dependencies>
  170. <dependency>
  171. <groupId>net.ranides</groupId>
  172. <artifactId>assira.rules</artifactId>
  173. <version>${assira.version}</version>
  174. </dependency>
  175. </dependencies>
  176. </plugin>
  177. <plugin>
  178. <groupId>org.jacoco</groupId>
  179. <artifactId>jacoco-maven-plugin</artifactId>
  180. <version>0.8.4</version>
  181. <executions>
  182. <execution>
  183. <id>default-prepare-agent</id>
  184. <goals>
  185. <goal>prepare-agent</goal>
  186. </goals>
  187. </execution>
  188. <execution>
  189. <id>default-report</id>
  190. <goals>
  191. <goal>report</goal>
  192. </goals>
  193. </execution>
  194. </executions>
  195. </plugin>
  196. <plugin>
  197. <groupId>org.apache.maven.plugins</groupId>
  198. <artifactId>maven-surefire-plugin</artifactId>
  199. <version>2.19.1</version>
  200. <configuration>
  201. <systemPropertyVariables>
  202. <assira.junit.debug>${assira.junit.debug}</assira.junit.debug>
  203. <assira.version>${assira.version}</assira.version>
  204. <assira.junit.log>${assira.junit.log}</assira.junit.log>
  205. </systemPropertyVariables>
  206. <testFailureIgnore>false</testFailureIgnore>
  207. <skip>false</skip>
  208. </configuration>
  209. </plugin>
  210. <plugin>
  211. <groupId>org.apache.maven.plugins</groupId>
  212. <artifactId>maven-jxr-plugin</artifactId>
  213. <version>2.3</version>
  214. </plugin>
  215. </plugins>
  216. </build>
  217. <reporting>
  218. <plugins>
  219. <plugin>
  220. <groupId>org.apache.maven.plugins</groupId>
  221. <artifactId>maven-javadoc-plugin</artifactId>
  222. <version>2.9</version>
  223. </plugin>
  224. <plugin>
  225. <groupId>org.apache.maven.plugins</groupId>
  226. <artifactId>maven-jxr-plugin</artifactId>
  227. <version>2.3</version>
  228. </plugin>
  229. </plugins>
  230. </reporting>
  231. <dependencyManagement>
  232. <dependencies>
  233. <dependency>
  234. <groupId>net.ranides</groupId>
  235. <artifactId>assira.core</artifactId>
  236. <version>${assira.version}</version>
  237. </dependency>
  238. <dependency>
  239. <groupId>net.ranides</groupId>
  240. <artifactId>assira.core8</artifactId>
  241. <version>${assira.version}</version>
  242. </dependency>
  243. <dependency>
  244. <groupId>net.ranides</groupId>
  245. <artifactId>assira.core11</artifactId>
  246. <version>${assira.version}</version>
  247. </dependency>
  248. <dependency>
  249. <groupId>net.ranides</groupId>
  250. <artifactId>assira.asm</artifactId>
  251. <version>7.2</version>
  252. </dependency>
  253. <dependency>
  254. <groupId>net.ranides</groupId>
  255. <artifactId>assira.jdk8</artifactId>
  256. <version>${assira.version}</version>
  257. <scope>runtime</scope>
  258. </dependency>
  259. <dependency>
  260. <groupId>net.ranides</groupId>
  261. <artifactId>assira.jdk11</artifactId>
  262. <version>${assira.version}</version>
  263. <scope>runtime</scope>
  264. </dependency>
  265. <dependency>
  266. <groupId>net.ranides</groupId>
  267. <artifactId>assira.junit</artifactId>
  268. <version>${assira.version}</version>
  269. <scope>test</scope>
  270. </dependency>
  271. <dependency>
  272. <groupId>net.ranides</groupId>
  273. <artifactId>assira.lambda</artifactId>
  274. <version>${assira.version}</version>
  275. </dependency>
  276. <dependency>
  277. <groupId>junit</groupId>
  278. <artifactId>junit</artifactId>
  279. <version>4.12</version>
  280. <scope>test</scope>
  281. </dependency>
  282. <dependency>
  283. <groupId>org.slf4j</groupId>
  284. <artifactId>slf4j-api</artifactId>
  285. <version>1.7.13</version>
  286. </dependency>
  287. <dependency>
  288. <groupId>org.slf4j</groupId>
  289. <artifactId>slf4j-simple</artifactId>
  290. <version>1.7.13</version>
  291. <scope>test</scope>
  292. </dependency>
  293. <dependency>
  294. <groupId>net.sourceforge.pmd</groupId>
  295. <artifactId>pmd-java</artifactId>
  296. <version>5.3.3</version>
  297. </dependency>
  298. <dependency>
  299. <groupId>com.google.code.findbugs</groupId>
  300. <artifactId>annotations</artifactId>
  301. <version>3.0.1u2</version>
  302. <scope>provided</scope>
  303. </dependency>
  304. <dependency>
  305. <groupId>com.fasterxml.jackson.core</groupId>
  306. <artifactId>jackson-core</artifactId>
  307. <version>2.9.9</version>
  308. </dependency>
  309. <dependency>
  310. <groupId>com.fasterxml.jackson.core</groupId>
  311. <artifactId>jackson-databind</artifactId>
  312. <version>2.9.9.3</version>
  313. </dependency>
  314. <dependency>
  315. <groupId>com.fasterxml.jackson.datatype</groupId>
  316. <artifactId>jackson-datatype-json-org</artifactId>
  317. <version>2.9.9</version>
  318. </dependency>
  319. <dependency>
  320. <groupId>com.fasterxml.jackson.datatype</groupId>
  321. <artifactId>jackson-datatype-jsr310</artifactId>
  322. <version>2.9.9</version>
  323. </dependency>
  324. <dependency>
  325. <groupId>se.fishtank</groupId>
  326. <artifactId>css-selectors</artifactId>
  327. <version>2.0</version>
  328. </dependency>
  329. <dependency>
  330. <groupId>io.jsonwebtoken</groupId>
  331. <artifactId>jjwt</artifactId>
  332. <version>0.9.0</version>
  333. </dependency>
  334. <dependency>
  335. <groupId>org.projectlombok</groupId>
  336. <artifactId>lombok</artifactId>
  337. <version>1.18.20</version>
  338. <scope>provided</scope>
  339. </dependency>
  340. </dependencies>
  341. </dependencyManagement>
  342. </project>