pom.xml 14 KB

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