pom.xml 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  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.8.4-SNAPSHOT</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://s01.oss.sonatype.org/content/repositories/snapshots</url>
  34. </snapshotRepository>
  35. <repository>
  36. <id>ossrh</id>
  37. <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  38. </repository>
  39. </distributionManagement>
  40. <properties>
  41. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  42. <maven.compiler.source>1.8</maven.compiler.source>
  43. <maven.compiler.target>1.8</maven.compiler.target>
  44. <netbeans.hint.license>WTFPL</netbeans.hint.license>
  45. <assira.junit.debug>false</assira.junit.debug>
  46. <assira.junit.logger.level>debug</assira.junit.logger.level>
  47. <!-- this is last version of "antlr4" artifact compatible with JDK 8 (ANTLR 4 Tool) -->
  48. <antlr.version>4.9.3</antlr.version>
  49. <org-netbeans-modules-editor-indent.CodeStyle.project.text-line-wrap>none</org-netbeans-modules-editor-indent.CodeStyle.project.text-line-wrap>
  50. <org-netbeans-modules-editor-indent.CodeStyle.project.indent-shift-width>4</org-netbeans-modules-editor-indent.CodeStyle.project.indent-shift-width>
  51. <org-netbeans-modules-editor-indent.CodeStyle.project.spaces-per-tab>4</org-netbeans-modules-editor-indent.CodeStyle.project.spaces-per-tab>
  52. <org-netbeans-modules-editor-indent.CodeStyle.project.tab-size>4</org-netbeans-modules-editor-indent.CodeStyle.project.tab-size>
  53. <org-netbeans-modules-editor-indent.CodeStyle.project.text-limit-width>120</org-netbeans-modules-editor-indent.CodeStyle.project.text-limit-width>
  54. <org-netbeans-modules-editor-indent.CodeStyle.project.expand-tabs>true</org-netbeans-modules-editor-indent.CodeStyle.project.expand-tabs>
  55. <org-netbeans-modules-editor-indent.CodeStyle.usedProfile>project</org-netbeans-modules-editor-indent.CodeStyle.usedProfile>
  56. </properties>
  57. <modules>
  58. </modules>
  59. <profiles>
  60. <profile>
  61. <id>asm</id>
  62. <modules>
  63. <module>assira.asm</module>
  64. </modules>
  65. </profile>
  66. <profile>
  67. <id>common</id>
  68. <modules>
  69. <module>assira.junit</module>
  70. <module>assira.test</module>
  71. <module>assira.core</module>
  72. <module>assira.commons</module>
  73. <module>assira.enterprise</module>
  74. <module>assira.xls</module>
  75. <module>assira.grammar-tool</module>
  76. </modules>
  77. </profile>
  78. <profile>
  79. <id>jdk8</id>
  80. <modules>
  81. <module>assira.core8</module>
  82. </modules>
  83. </profile>
  84. <profile>
  85. <id>jdk11</id>
  86. <modules>
  87. <module>assira.core11</module>
  88. <module>assira.lambda</module>
  89. </modules>
  90. </profile>
  91. <profile>
  92. <id>release</id>
  93. <activation>
  94. <activeByDefault>false</activeByDefault>
  95. </activation>
  96. <build>
  97. <plugins>
  98. <plugin>
  99. <groupId>org.apache.maven.plugins</groupId>
  100. <artifactId>maven-source-plugin</artifactId>
  101. <version>2.2.1</version>
  102. <executions>
  103. <execution>
  104. <id>attach-sources</id>
  105. <goals>
  106. <goal>jar-no-fork</goal>
  107. </goals>
  108. </execution>
  109. </executions>
  110. </plugin>
  111. <plugin>
  112. <groupId>org.apache.maven.plugins</groupId>
  113. <artifactId>maven-javadoc-plugin</artifactId>
  114. <version>3.3.1</version>
  115. <executions>
  116. <execution>
  117. <id>attach-javadocs</id>
  118. <goals>
  119. <goal>jar</goal>
  120. </goals>
  121. </execution>
  122. </executions>
  123. <configuration>
  124. <version>true</version>
  125. <show>public</show>
  126. <doclint>none</doclint>
  127. </configuration>
  128. </plugin>
  129. <plugin>
  130. <groupId>org.apache.maven.plugins</groupId>
  131. <artifactId>maven-gpg-plugin</artifactId>
  132. <version>1.5</version>
  133. <executions>
  134. <execution>
  135. <id>sign-artifacts</id>
  136. <phase>verify</phase>
  137. <goals>
  138. <goal>sign</goal>
  139. </goals>
  140. </execution>
  141. </executions>
  142. </plugin>
  143. </plugins>
  144. </build>
  145. </profile>
  146. <profile>
  147. <id>offline</id>
  148. <activation>
  149. <property>
  150. <name>net.ranides.offline</name>
  151. </property>
  152. </activation>
  153. <build>
  154. <plugins>
  155. <plugin>
  156. <groupId>org.apache.maven.plugins</groupId>
  157. <artifactId>maven-surefire-plugin</artifactId>
  158. <configuration>
  159. <excludedGroups>net.ranides.assira.junit.JCategories$Slow,net.ranides.assira.junit.JCategories$UnstableTest,net.ranides.assira.junit.JCategories$Online</excludedGroups>
  160. </configuration>
  161. </plugin>
  162. </plugins>
  163. </build>
  164. </profile>
  165. </profiles>
  166. <build>
  167. <extensions>
  168. <extension>
  169. <groupId>org.apache.maven.wagon</groupId>
  170. <artifactId>wagon-ftp</artifactId>
  171. <version>1.0</version>
  172. </extension>
  173. </extensions>
  174. <plugins>
  175. <plugin>
  176. <groupId>org.apache.maven.plugins</groupId>
  177. <artifactId>maven-compiler-plugin</artifactId>
  178. <version>3.8.1</version>
  179. <configuration>
  180. <source>${maven.compiler.source}</source>
  181. <target>${maven.compiler.target}</target>
  182. <compilerArgument>-Xlint:unchecked</compilerArgument>
  183. <compilerArgument>-parameters</compilerArgument>
  184. </configuration>
  185. </plugin>
  186. <plugin>
  187. <groupId>org.apache.maven.plugins</groupId>
  188. <artifactId>maven-surefire-plugin</artifactId>
  189. <version>2.19.1</version>
  190. <configuration>
  191. <systemPropertyVariables>
  192. <assira.junit.debug>${assira.junit.debug}</assira.junit.debug>
  193. <assira.version>${project.version}</assira.version>
  194. <assira.junit.logger.level>${assira.junit.logger.level}</assira.junit.logger.level>
  195. </systemPropertyVariables>
  196. <testFailureIgnore>false</testFailureIgnore>
  197. <skip>false</skip>
  198. <excludedGroups>net.ranides.assira.junit.JCategories$Slow,net.ranides.assira.junit.JCategories$UnstableTest</excludedGroups>
  199. </configuration>
  200. </plugin>
  201. <plugin>
  202. <groupId>org.apache.maven.plugins</groupId>
  203. <artifactId>maven-jxr-plugin</artifactId>
  204. <version>2.3</version>
  205. </plugin>
  206. </plugins>
  207. </build>
  208. <reporting>
  209. <plugins>
  210. <plugin>
  211. <groupId>org.apache.maven.plugins</groupId>
  212. <artifactId>maven-javadoc-plugin</artifactId>
  213. <version>2.9</version>
  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. </reporting>
  222. <dependencyManagement>
  223. <dependencies>
  224. <dependency>
  225. <groupId>net.ranides</groupId>
  226. <artifactId>assira.commons</artifactId>
  227. <version>${project.version}</version>
  228. </dependency>
  229. <dependency>
  230. <groupId>net.ranides</groupId>
  231. <artifactId>assira.core</artifactId>
  232. <version>${project.version}</version>
  233. <type>jar</type>
  234. </dependency>
  235. <dependency>
  236. <groupId>net.ranides</groupId>
  237. <artifactId>assira.core</artifactId>
  238. <version>${project.version}</version>
  239. <type>test-jar</type>
  240. <scope>test</scope>
  241. </dependency>
  242. <dependency>
  243. <groupId>net.ranides</groupId>
  244. <artifactId>assira.core8</artifactId>
  245. <version>${project.version}</version>
  246. </dependency>
  247. <dependency>
  248. <groupId>net.ranides</groupId>
  249. <artifactId>assira.core11</artifactId>
  250. <version>${project.version}</version>
  251. </dependency>
  252. <dependency>
  253. <groupId>net.ranides</groupId>
  254. <artifactId>assira.asm</artifactId>
  255. <version>7.2</version>
  256. </dependency>
  257. <dependency>
  258. <groupId>net.ranides</groupId>
  259. <artifactId>assira.jdk8</artifactId>
  260. <version>${project.version}</version>
  261. <scope>runtime</scope>
  262. </dependency>
  263. <dependency>
  264. <groupId>net.ranides</groupId>
  265. <artifactId>assira.jdk11</artifactId>
  266. <version>${project.version}</version>
  267. <scope>runtime</scope>
  268. </dependency>
  269. <dependency>
  270. <groupId>net.ranides</groupId>
  271. <artifactId>assira.junit</artifactId>
  272. <version>${project.version}</version>
  273. <scope>test</scope>
  274. </dependency>
  275. <dependency>
  276. <groupId>net.ranides</groupId>
  277. <artifactId>assira.lambda</artifactId>
  278. <version>${project.version}</version>
  279. </dependency>
  280. <dependency>
  281. <groupId>junit</groupId>
  282. <artifactId>junit</artifactId>
  283. <version>4.13.2</version>
  284. <scope>test</scope>
  285. </dependency>
  286. <dependency>
  287. <groupId>org.slf4j</groupId>
  288. <artifactId>slf4j-api</artifactId>
  289. <version>1.7.13</version>
  290. </dependency>
  291. <dependency>
  292. <groupId>org.slf4j</groupId>
  293. <artifactId>slf4j-simple</artifactId>
  294. <version>1.7.13</version>
  295. <scope>test</scope>
  296. </dependency>
  297. <dependency>
  298. <groupId>net.sourceforge.pmd</groupId>
  299. <artifactId>pmd-java</artifactId>
  300. <version>5.3.3</version>
  301. </dependency>
  302. <dependency>
  303. <groupId>com.google.code.findbugs</groupId>
  304. <artifactId>annotations</artifactId>
  305. <version>3.0.1u2</version>
  306. <scope>provided</scope>
  307. </dependency>
  308. <dependency>
  309. <groupId>com.fasterxml.jackson.core</groupId>
  310. <artifactId>jackson-core</artifactId>
  311. <version>2.15.0</version>
  312. </dependency>
  313. <dependency>
  314. <groupId>com.fasterxml.jackson.core</groupId>
  315. <artifactId>jackson-databind</artifactId>
  316. <version>2.15.0</version>
  317. </dependency>
  318. <dependency>
  319. <groupId>com.fasterxml.jackson.datatype</groupId>
  320. <artifactId>jackson-datatype-json-org</artifactId>
  321. <version>2.15.0</version>
  322. </dependency>
  323. <dependency>
  324. <groupId>com.fasterxml.jackson.datatype</groupId>
  325. <artifactId>jackson-datatype-jsr310</artifactId>
  326. <version>2.15.0</version>
  327. </dependency>
  328. <dependency>
  329. <groupId>se.fishtank</groupId>
  330. <artifactId>css-selectors</artifactId>
  331. <version>2.0</version>
  332. </dependency>
  333. <dependency>
  334. <groupId>io.jsonwebtoken</groupId>
  335. <artifactId>jjwt</artifactId>
  336. <version>0.9.0</version>
  337. </dependency>
  338. <dependency>
  339. <groupId>org.projectlombok</groupId>
  340. <artifactId>lombok</artifactId>
  341. <version>1.18.20</version>
  342. <scope>provided</scope>
  343. </dependency>
  344. <dependency>
  345. <groupId>org.antlr</groupId>
  346. <artifactId>antlr4-runtime</artifactId>
  347. <version>${antlr.version}</version>
  348. </dependency>
  349. <dependency>
  350. <groupId>org.antlr</groupId>
  351. <artifactId>antlr4</artifactId>
  352. <version>${antlr.version}</version>
  353. </dependency>
  354. </dependencies>
  355. </dependencyManagement>
  356. </project>