pom.xml 14 KB

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