pom.xml 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Copyright 2019-2021 Steinar Bang -->
  3. <!-- -->
  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. <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" xml:space="preserve">
  14. <modelVersion>4.0.0</modelVersion>
  15. <parent>
  16. <groupId>no.priv.bang.pom</groupId>
  17. <artifactId>bang-pom</artifactId>
  18. <version>1.0.10</version>
  19. </parent>
  20. <groupId>no.priv.bang.servlet</groupId>
  21. <artifactId>servlet-parent</artifactId>
  22. <version>1.5.6</version>
  23. <packaging>pom</packaging>
  24. <name>Servlet common code</name>
  25. <description>Various servets and filters</description>
  26. <modules>
  27. <module>servlet</module>
  28. <module>jacoco-coverage-report</module>
  29. <module>servlet-bom</module>
  30. </modules>
  31. <properties>
  32. <service-adapters.version>1.1.4</service-adapters.version>
  33. <jersey-feature.version>1.8.3</jersey-feature.version>
  34. <sonar.coverage.jacoco.xmlReportPaths>${project.basedir}/../../jacoco-coverage-report/target/site/jacoco-aggregate/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
  35. </properties>
  36. <build>
  37. <plugins>
  38. <plugin>
  39. <groupId>org.apache.maven.plugins</groupId>
  40. <artifactId>maven-source-plugin</artifactId>
  41. <executions>
  42. <execution>
  43. <id>attach-sources</id>
  44. <goals>
  45. <goal>jar</goal>
  46. </goals>
  47. </execution>
  48. </executions>
  49. </plugin>
  50. <plugin>
  51. <groupId>org.apache.maven.plugins</groupId>
  52. <artifactId>maven-javadoc-plugin</artifactId>
  53. <configuration>
  54. <source>8</source>
  55. <show>private</show>
  56. </configuration>
  57. <executions>
  58. <execution>
  59. <id>attach-javadocs</id>
  60. <goals>
  61. <goal>jar</goal>
  62. </goals>
  63. </execution>
  64. <execution>
  65. <id>aggregate-javadocs</id>
  66. <goals>
  67. <goal>aggregate-jar</goal>
  68. </goals>
  69. <phase>prepare-package</phase>
  70. <configuration>
  71. </configuration>
  72. </execution>
  73. </executions>
  74. </plugin>
  75. <plugin>
  76. <groupId>org.apache.maven.plugins</groupId>
  77. <artifactId>maven-release-plugin</artifactId>
  78. <configuration>
  79. <releaseProfiles>release-sign-artifact</releaseProfiles>
  80. </configuration>
  81. </plugin>
  82. <plugin>
  83. <groupId>org.sonatype.plugins</groupId>
  84. <artifactId>nexus-staging-maven-plugin</artifactId>
  85. </plugin>
  86. </plugins>
  87. <extensions>
  88. <extension>
  89. <groupId>org.apache.maven.wagon</groupId>
  90. <artifactId>wagon-ftp</artifactId>
  91. <version>1.0-beta-6</version>
  92. </extension>
  93. </extensions>
  94. </build>
  95. <distributionManagement>
  96. <snapshotRepository>
  97. <id>ossrh</id>
  98. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  99. </snapshotRepository>
  100. <repository>
  101. <id>ossrh</id>
  102. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  103. </repository>
  104. </distributionManagement>
  105. <licenses>
  106. <license>
  107. <name>Apache License version 2</name>
  108. <url>http://www.apache.org/licenses/LICENSE-2.0</url>
  109. </license>
  110. </licenses>
  111. <developers>
  112. <developer>
  113. <name>Steinar Bang</name>
  114. <email>sb@dod.no</email>
  115. <url>https://steinar.bang.priv.no/</url>
  116. <organization>steinarb-github</organization>
  117. <organizationUrl>https://github.com/steinarb</organizationUrl>
  118. </developer>
  119. </developers>
  120. <scm>
  121. <url>https://github.com/steinarb/servlet</url>
  122. <connection>scm:git:https://github.com/steinarb/servlet.git</connection>
  123. <tag>servlet-1.5.6</tag>
  124. </scm>
  125. <issueManagement>
  126. <url>https://github.com/steinarb/servlet/issues</url>
  127. <system>Github issue tracker</system>
  128. </issueManagement>
  129. <ciManagement>
  130. <url>https://travis-ci.org/steinarb/servlet</url>
  131. <system>travis-ci</system>
  132. </ciManagement>
  133. <url>http://steinarb.github.io/servlet/</url>
  134. <profiles>
  135. <profile>
  136. <id>release-sign-artifact</id>
  137. <build>
  138. <plugins>
  139. <plugin>
  140. <groupId>org.apache.maven.plugins</groupId>
  141. <artifactId>maven-gpg-plugin</artifactId>
  142. <version>1.6</version>
  143. <executions>
  144. <execution>
  145. <id>sign-artifacts</id>
  146. <phase>verify</phase>
  147. <goals>
  148. <goal>sign</goal>
  149. </goals>
  150. <configuration>
  151. <gpgArguments>
  152. <arg>--pinentry-mode</arg>
  153. <arg>loopback</arg>
  154. </gpgArguments>
  155. </configuration>
  156. </execution>
  157. </executions>
  158. </plugin>
  159. </plugins>
  160. </build>
  161. </profile>
  162. </profiles>
  163. </project>