pom.xml 6.5 KB

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