pom.xml 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xml:space="preserve">
  3. <!-- Copyright 2016-2024 Steinar Bang -->
  4. <!-- -->
  5. <!-- Licensed under the Apache License, Version 2.0 (the "License"); -->
  6. <!-- you may not use this file except in compliance with the License. -->
  7. <!-- You may obtain a copy of the License at -->
  8. <!-- http://www.apache.org/licenses/LICENSE-2.0 -->
  9. <!-- Unless required by applicable law or agreed to in writing, -->
  10. <!-- software distributed under the License is distributed on an "AS IS" BASIS, -->
  11. <!-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -->
  12. <!-- See the License for the specific language governing permissions and limitations -->
  13. <!-- under the License. -->
  14. <modelVersion>4.0.0</modelVersion>
  15. <parent>
  16. <groupId>no.priv.bang.pom</groupId>
  17. <artifactId>bang-authservice-client-pom</artifactId>
  18. <version>1.1.50</version>
  19. </parent>
  20. <groupId>no.priv.bang.ukelonn</groupId>
  21. <artifactId>ukelonn</artifactId>
  22. <version>1.0.0-SNAPSHOT</version>
  23. <packaging>pom</packaging>
  24. <name>ukelonn webapp</name>
  25. <modules>
  26. <module>ukelonn.services</module>
  27. <module>ukelonn.backend</module>
  28. <module>ukelonn.web.security</module>
  29. <module>ukelonn.web.services</module>
  30. <module>ukelonn.web.frontend</module>
  31. <module>ukelonn.testutils</module>
  32. <module>ukelonn.db.liquibase</module>
  33. <module>ukelonn.db.liquibase.test</module>
  34. <module>ukelonn.db.as.authservicedb</module>
  35. <module>ukelonn.db.liquibase.production</module>
  36. <module>karaf</module>
  37. <module>ukelonn.tests</module>
  38. <module>jacoco-coverage-report</module>
  39. <module>docker</module>
  40. </modules>
  41. <properties>
  42. <open-iconic.version>1.1.1</open-iconic.version>
  43. <sonar.cpd.exclusions>
  44. **/ProductionLiquibaseRunner.java,
  45. **/TestLiquibaseRunner.java
  46. </sonar.cpd.exclusions>
  47. <sonar.coverage.jacoco.xmlReportPaths>${project.basedir}/../jacoco-coverage-report/target/site/jacoco-aggregate/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
  48. </properties>
  49. <dependencyManagement>
  50. <dependencies>
  51. <dependency>
  52. <groupId>no.priv.bang.pom</groupId>
  53. <artifactId>bang-bom</artifactId>
  54. <version>${bang-bom.version}</version>
  55. <type>pom</type>
  56. <scope>import</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.karaf</groupId>
  60. <artifactId>karaf-bom</artifactId>
  61. <version>${karaf.version}</version>
  62. <type>pom</type>
  63. <scope>import</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>no.priv.bang.beans</groupId>
  67. <artifactId>beans-bom</artifactId>
  68. <version>${beans.version}</version>
  69. <type>pom</type>
  70. <scope>import</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>no.priv.bang.servlet</groupId>
  74. <artifactId>servlet-bom</artifactId>
  75. <version>${bang-servlet.version}</version>
  76. <type>pom</type>
  77. <scope>import</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>no.priv.bang.karaf</groupId>
  81. <artifactId>jersey-feature-bom</artifactId>
  82. <version>${jersey-feature.version}</version>
  83. <type>pom</type>
  84. <scope>import</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>no.priv.bang.authservice</groupId>
  88. <artifactId>authservice-bom</artifactId>
  89. <version>${authservice.version}</version>
  90. <type>pom</type>
  91. <scope>import</scope>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.apache.shiro</groupId>
  95. <artifactId>shiro-bom</artifactId>
  96. <version>${shiro.version}</version>
  97. <type>pom</type>
  98. <scope>import</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>no.priv.bang.osgiservice</groupId>
  102. <artifactId>osgiservice-bom</artifactId>
  103. <version>${bang-osgi-service.version}</version>
  104. <type>pom</type>
  105. <scope>import</scope>
  106. </dependency>
  107. <dependency>
  108. <groupId>no.priv.bang.osgi.service.adapters</groupId>
  109. <artifactId>adapters-bom</artifactId>
  110. <version>${osgi-service-adapters.version}</version>
  111. <type>pom</type>
  112. <scope>import</scope>
  113. </dependency>
  114. <dependency>
  115. <groupId>no.priv.bang.jdbc</groupId>
  116. <artifactId>jdbc-bom</artifactId>
  117. <version>${datasourceproxy.version}</version>
  118. <type>pom</type>
  119. <scope>import</scope>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.junit</groupId>
  123. <artifactId>junit-bom</artifactId>
  124. <version>${junit.jupiter.version}</version>
  125. <type>pom</type>
  126. <scope>import</scope>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.webjars.bower</groupId>
  130. <artifactId>open-iconic</artifactId>
  131. <version>${open-iconic.version}</version>
  132. </dependency>
  133. </dependencies>
  134. </dependencyManagement>
  135. <build>
  136. <plugins>
  137. <plugin>
  138. <groupId>org.apache.maven.plugins</groupId>
  139. <artifactId>maven-source-plugin</artifactId>
  140. <executions>
  141. <execution>
  142. <id>attach-sources</id>
  143. <goals>
  144. <goal>jar</goal>
  145. </goals>
  146. </execution>
  147. </executions>
  148. </plugin>
  149. <plugin>
  150. <groupId>org.apache.maven.plugins</groupId>
  151. <artifactId>maven-javadoc-plugin</artifactId>
  152. <configuration>
  153. <show>private</show>
  154. <source>8</source>
  155. </configuration>
  156. <executions>
  157. <execution>
  158. <id>attach-javadocs</id>
  159. <goals>
  160. <goal>jar</goal>
  161. </goals>
  162. </execution>
  163. </executions>
  164. </plugin>
  165. <plugin>
  166. <groupId>org.eluder.coveralls</groupId>
  167. <artifactId>coveralls-maven-plugin</artifactId>
  168. <version>4.3.0</version>
  169. <dependencies>
  170. <dependency>
  171. <groupId>jakarta.xml.bind</groupId>
  172. <artifactId>jakarta.xml.bind-api</artifactId>
  173. <version>2.3.3</version>
  174. </dependency>
  175. </dependencies>
  176. <configuration>
  177. <jacocoReports>
  178. <jacocoReport>${project.basedir}/jacoco-coverage-report/target/site/jacoco-aggregate/jacoco.xml</jacocoReport>
  179. </jacocoReports>
  180. </configuration>
  181. </plugin>
  182. <plugin>
  183. <groupId>org.apache.maven.plugins</groupId>
  184. <artifactId>maven-enforcer-plugin</artifactId>
  185. <version>3.0.0-M3</version>
  186. <executions>
  187. <execution>
  188. <id>enforce-no-duplicate-versions</id>
  189. <goals>
  190. <goal>enforce</goal>
  191. </goals>
  192. <configuration>
  193. <rules>
  194. <banDuplicatePomDependencyVersions/>
  195. </rules>
  196. </configuration>
  197. </execution>
  198. </executions>
  199. </plugin>
  200. </plugins>
  201. <extensions>
  202. <extension>
  203. <groupId>org.apache.maven.wagon</groupId>
  204. <artifactId>wagon-ssh</artifactId>
  205. <version>3.2.0</version>
  206. </extension>
  207. </extensions>
  208. </build>
  209. <distributionManagement>
  210. <repository>
  211. <id>ssh-maven-travis</id>
  212. <url>sftp://maven.bang.priv.no/repository</url>
  213. </repository>
  214. <snapshotRepository>
  215. <id>ssh-maven-travis</id>
  216. <url>sftp://maven.bang.priv.no/repository</url>
  217. </snapshotRepository>
  218. </distributionManagement>
  219. </project>