pom.xml 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  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.ui</module>
  74. <module>assira.enterprise</module>
  75. <module>assira.xls</module>
  76. <module>assira.g4interpreter</module>
  77. </modules>
  78. </profile>
  79. <profile>
  80. <id>jdk8</id>
  81. <modules>
  82. <module>assira.core8</module>
  83. </modules>
  84. </profile>
  85. <profile>
  86. <id>jdk11</id>
  87. <modules>
  88. <module>assira.core11</module>
  89. <module>assira.lambda</module>
  90. </modules>
  91. </profile>
  92. <profile>
  93. <id>release</id>
  94. <activation>
  95. <activeByDefault>false</activeByDefault>
  96. </activation>
  97. <build>
  98. <plugins>
  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. </plugins>
  145. </build>
  146. </profile>
  147. <profile>
  148. <id>offline</id>
  149. <activation>
  150. <property>
  151. <name>net.ranides.offline</name>
  152. </property>
  153. </activation>
  154. <build>
  155. <plugins>
  156. <plugin>
  157. <groupId>org.apache.maven.plugins</groupId>
  158. <artifactId>maven-surefire-plugin</artifactId>
  159. <configuration>
  160. <excludedGroups>net.ranides.assira.junit.JCategories$Slow,net.ranides.assira.junit.JCategories$UnstableTest,net.ranides.assira.junit.JCategories$Online</excludedGroups>
  161. </configuration>
  162. </plugin>
  163. </plugins>
  164. </build>
  165. </profile>
  166. </profiles>
  167. <build>
  168. <extensions>
  169. <extension>
  170. <groupId>org.apache.maven.wagon</groupId>
  171. <artifactId>wagon-ftp</artifactId>
  172. <version>1.0</version>
  173. </extension>
  174. </extensions>
  175. <plugins>
  176. <plugin>
  177. <groupId>org.apache.maven.plugins</groupId>
  178. <artifactId>maven-compiler-plugin</artifactId>
  179. <version>3.8.1</version>
  180. <configuration>
  181. <source>${maven.compiler.source}</source>
  182. <target>${maven.compiler.target}</target>
  183. <compilerArgument>-Xlint:unchecked</compilerArgument>
  184. <compilerArgument>-parameters</compilerArgument>
  185. </configuration>
  186. </plugin>
  187. <plugin>
  188. <groupId>org.apache.maven.plugins</groupId>
  189. <artifactId>maven-surefire-plugin</artifactId>
  190. <version>2.19.1</version>
  191. <configuration>
  192. <systemPropertyVariables>
  193. <assira.junit.debug>${assira.junit.debug}</assira.junit.debug>
  194. <assira.version>${project.version}</assira.version>
  195. <assira.junit.logger.level>${assira.junit.logger.level}</assira.junit.logger.level>
  196. </systemPropertyVariables>
  197. <testFailureIgnore>false</testFailureIgnore>
  198. <skip>false</skip>
  199. <excludedGroups>net.ranides.assira.junit.JCategories$Slow,net.ranides.assira.junit.JCategories$UnstableTest</excludedGroups>
  200. </configuration>
  201. </plugin>
  202. <plugin>
  203. <groupId>org.apache.maven.plugins</groupId>
  204. <artifactId>maven-jxr-plugin</artifactId>
  205. <version>2.3</version>
  206. </plugin>
  207. </plugins>
  208. </build>
  209. <reporting>
  210. <plugins>
  211. <plugin>
  212. <groupId>org.apache.maven.plugins</groupId>
  213. <artifactId>maven-javadoc-plugin</artifactId>
  214. <version>2.9</version>
  215. </plugin>
  216. <plugin>
  217. <groupId>org.apache.maven.plugins</groupId>
  218. <artifactId>maven-jxr-plugin</artifactId>
  219. <version>2.3</version>
  220. </plugin>
  221. </plugins>
  222. </reporting>
  223. <dependencyManagement>
  224. <dependencies>
  225. <dependency>
  226. <groupId>net.ranides</groupId>
  227. <artifactId>assira.commons</artifactId>
  228. <version>${project.version}</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>net.ranides</groupId>
  232. <artifactId>assira.g4interpreter</artifactId>
  233. <version>${project.version}</version>
  234. </dependency>
  235. <dependency>
  236. <groupId>net.ranides</groupId>
  237. <artifactId>assira.core</artifactId>
  238. <version>${project.version}</version>
  239. <type>jar</type>
  240. </dependency>
  241. <dependency>
  242. <groupId>net.ranides</groupId>
  243. <artifactId>assira.core</artifactId>
  244. <version>${project.version}</version>
  245. <type>test-jar</type>
  246. <scope>test</scope>
  247. </dependency>
  248. <dependency>
  249. <groupId>net.ranides</groupId>
  250. <artifactId>assira.core8</artifactId>
  251. <version>${project.version}</version>
  252. </dependency>
  253. <dependency>
  254. <groupId>net.ranides</groupId>
  255. <artifactId>assira.core11</artifactId>
  256. <version>${project.version}</version>
  257. </dependency>
  258. <dependency>
  259. <groupId>net.ranides</groupId>
  260. <artifactId>assira.asm</artifactId>
  261. <version>7.2</version>
  262. </dependency>
  263. <dependency>
  264. <groupId>net.ranides</groupId>
  265. <artifactId>assira.jdk8</artifactId>
  266. <version>${project.version}</version>
  267. <scope>runtime</scope>
  268. </dependency>
  269. <dependency>
  270. <groupId>net.ranides</groupId>
  271. <artifactId>assira.jdk11</artifactId>
  272. <version>${project.version}</version>
  273. <scope>runtime</scope>
  274. </dependency>
  275. <dependency>
  276. <groupId>net.ranides</groupId>
  277. <artifactId>assira.junit</artifactId>
  278. <version>${project.version}</version>
  279. <scope>test</scope>
  280. </dependency>
  281. <dependency>
  282. <groupId>net.ranides</groupId>
  283. <artifactId>assira.lambda</artifactId>
  284. <version>${project.version}</version>
  285. </dependency>
  286. <dependency>
  287. <groupId>junit</groupId>
  288. <artifactId>junit</artifactId>
  289. <version>4.13.2</version>
  290. <scope>test</scope>
  291. </dependency>
  292. <dependency>
  293. <groupId>org.slf4j</groupId>
  294. <artifactId>slf4j-api</artifactId>
  295. <version>1.7.13</version>
  296. </dependency>
  297. <dependency>
  298. <groupId>org.slf4j</groupId>
  299. <artifactId>slf4j-simple</artifactId>
  300. <version>1.7.13</version>
  301. <scope>test</scope>
  302. </dependency>
  303. <dependency>
  304. <groupId>net.sourceforge.pmd</groupId>
  305. <artifactId>pmd-java</artifactId>
  306. <version>5.3.3</version>
  307. </dependency>
  308. <dependency>
  309. <groupId>com.google.code.findbugs</groupId>
  310. <artifactId>annotations</artifactId>
  311. <version>3.0.1u2</version>
  312. <scope>provided</scope>
  313. </dependency>
  314. <dependency>
  315. <groupId>com.fasterxml.jackson.core</groupId>
  316. <artifactId>jackson-core</artifactId>
  317. <version>2.15.0</version>
  318. </dependency>
  319. <dependency>
  320. <groupId>com.fasterxml.jackson.core</groupId>
  321. <artifactId>jackson-databind</artifactId>
  322. <version>2.15.0</version>
  323. </dependency>
  324. <dependency>
  325. <groupId>com.fasterxml.jackson.datatype</groupId>
  326. <artifactId>jackson-datatype-json-org</artifactId>
  327. <version>2.15.0</version>
  328. </dependency>
  329. <dependency>
  330. <groupId>com.fasterxml.jackson.datatype</groupId>
  331. <artifactId>jackson-datatype-jsr310</artifactId>
  332. <version>2.15.0</version>
  333. </dependency>
  334. <dependency>
  335. <groupId>se.fishtank</groupId>
  336. <artifactId>css-selectors</artifactId>
  337. <version>2.0</version>
  338. </dependency>
  339. <dependency>
  340. <groupId>io.jsonwebtoken</groupId>
  341. <artifactId>jjwt</artifactId>
  342. <version>0.9.0</version>
  343. </dependency>
  344. <dependency>
  345. <groupId>org.projectlombok</groupId>
  346. <artifactId>lombok</artifactId>
  347. <version>1.18.20</version>
  348. <scope>provided</scope>
  349. </dependency>
  350. <dependency>
  351. <groupId>org.antlr</groupId>
  352. <artifactId>antlr4-runtime</artifactId>
  353. <version>${antlr.version}</version>
  354. </dependency>
  355. <dependency>
  356. <groupId>org.antlr</groupId>
  357. <artifactId>antlr4</artifactId>
  358. <version>${antlr.version}</version>
  359. </dependency>
  360. </dependencies>
  361. </dependencyManagement>
  362. </project>