pom.xml 16 KB

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