pom.xml 8.7 KB

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