pom.xml 13 KB

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