pom.xml 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Copyright 2017-2019 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. <groupId>no.priv.bang.karaf</groupId>
  16. <artifactId>liquibase-core-karaf</artifactId>
  17. <version>3.7.0</version>
  18. <packaging>pom</packaging>
  19. <name>liquibase-core karaf feature</name>
  20. <description>An apache karaf feature for the liquibase RDMBS schema management, including slf4j logging.</description>
  21. <url>https://github.com/steinarb/liquibase-karaf-feature</url>
  22. <properties>
  23. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  24. <maven.bundle.plugin.version>3.5.1</maven.bundle.plugin.version>
  25. <karaf.version>4.2.7</karaf.version>
  26. <liquibase.version>${project.version}</liquibase.version>
  27. <liquibase-slf4j.version>2.0.0</liquibase-slf4j.version>
  28. <snakeyaml.version>1.23</snakeyaml.version>
  29. </properties>
  30. <modules>
  31. <module>com.mattbertolini.liquibase-slf4j-osgi</module>
  32. </modules>
  33. <licenses>
  34. <license>
  35. <name>Apache License - v 2.0</name>
  36. <url>http://www.apache.org/licenses/LICENSE-2.0</url>
  37. <comments>Applies to the files in this maven project</comments>
  38. </license>
  39. <license>
  40. <name>MIT License</name>
  41. <url>https://github.com/mattbertolini/liquibase-slf4j/blob/master/LICENSE</url>
  42. <comments>Copyright 2012-2015 Matt Bertolini, applies to the OSGi bundle containing a OSGi-fied liquibase-slf4j jar</comments>
  43. </license>
  44. </licenses>
  45. <developers>
  46. <developer>
  47. <name>Steinar Bang</name>
  48. <email>sb@dod.no</email>
  49. </developer>
  50. </developers>
  51. <dependencyManagement>
  52. <dependencies>
  53. <dependency>
  54. <groupId>com.mattbertolini</groupId>
  55. <artifactId>liquibase-slf4j</artifactId>
  56. <version>${liquibase-slf4j.version}</version>
  57. <scope>provided</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.liquibase</groupId>
  61. <artifactId>liquibase-core</artifactId>
  62. <version>${liquibase.version}</version>
  63. <scope>provided</scope>
  64. </dependency>
  65. </dependencies>
  66. </dependencyManagement>
  67. <build>
  68. <pluginManagement>
  69. <plugins>
  70. <plugin>
  71. <groupId>org.apache.maven.plugins</groupId>
  72. <artifactId>maven-compiler-plugin</artifactId>
  73. <version>3.5.1</version>
  74. <configuration>
  75. <source>1.8</source>
  76. <target>1.8</target>
  77. </configuration>
  78. </plugin>
  79. <plugin>
  80. <groupId>org.apache.felix</groupId>
  81. <artifactId>maven-bundle-plugin</artifactId>
  82. <version>${maven.bundle.plugin.version}</version>
  83. </plugin>
  84. <plugin>
  85. <groupId>org.apache.karaf.tooling</groupId>
  86. <artifactId>karaf-maven-plugin</artifactId>
  87. <version>${karaf.version}</version>
  88. <extensions>true</extensions>
  89. <configuration>
  90. <startLevel>80</startLevel>
  91. <includeTransitiveDependency>false</includeTransitiveDependency>
  92. <aggregateFeatures>false</aggregateFeatures>
  93. <includeProjectArtifact>true</includeProjectArtifact>
  94. </configuration>
  95. <executions>
  96. <execution>
  97. <id>generate-features-file</id>
  98. <phase>package</phase>
  99. <goals>
  100. <goal>features-generate-descriptor</goal>
  101. </goals>
  102. </execution>
  103. </executions>
  104. </plugin>
  105. </plugins>
  106. </pluginManagement>
  107. <plugins>
  108. <plugin>
  109. <groupId>org.apache.maven.plugins</groupId>
  110. <artifactId>maven-dependency-plugin</artifactId>
  111. <dependencies>
  112. <dependency>
  113. <groupId>org.apache.felix</groupId>
  114. <artifactId>maven-bundle-plugin</artifactId>
  115. <version>${maven.bundle.plugin.version}</version>
  116. <type>maven-plugin</type>
  117. </dependency>
  118. </dependencies>
  119. <extensions>true</extensions>
  120. </plugin>
  121. <plugin>
  122. <groupId>org.apache.karaf.tooling</groupId>
  123. <artifactId>karaf-maven-plugin</artifactId>
  124. <configuration>
  125. <includeProjectArtifact>false</includeProjectArtifact>
  126. </configuration>
  127. </plugin>
  128. <plugin>
  129. <groupId>org.apache.maven.plugins</groupId>
  130. <artifactId>maven-release-plugin</artifactId>
  131. <version>2.5.3</version>
  132. <configuration>
  133. <pushChanges>false</pushChanges>
  134. <localCheckout>true</localCheckout>
  135. </configuration>
  136. </plugin>
  137. <plugin>
  138. <groupId>org.apache.maven.plugins</groupId>
  139. <artifactId>maven-gpg-plugin</artifactId>
  140. <version>1.6</version>
  141. <executions>
  142. <execution>
  143. <id>sign-artifacts</id>
  144. <phase>verify</phase>
  145. <goals>
  146. <goal>sign</goal>
  147. </goals>
  148. <configuration>
  149. <gpgArguments>
  150. <arg>--pinentry-mode</arg>
  151. <arg>loopback</arg>
  152. </gpgArguments>
  153. </configuration>
  154. </execution>
  155. </executions>
  156. </plugin>
  157. <plugin>
  158. <groupId>org.sonatype.plugins</groupId>
  159. <artifactId>nexus-staging-maven-plugin</artifactId>
  160. <version>1.6.8</version>
  161. <extensions>true</extensions>
  162. <configuration>
  163. <serverId>ossrh</serverId>
  164. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  165. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  166. </configuration>
  167. </plugin>
  168. </plugins>
  169. </build>
  170. <scm>
  171. <url>https://github.com/steinarb/liquibase-karaf-feature.git</url>
  172. <connection>scm:git:https://github.com/steinarb/liquibase-karaf-feature.git</connection>
  173. <tag>liquibase-core-karaf-3.7.0</tag>
  174. </scm>
  175. <distributionManagement>
  176. <snapshotRepository>
  177. <id>ossrh</id>
  178. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  179. </snapshotRepository>
  180. <repository>
  181. <id>ossrh</id>
  182. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  183. </repository>
  184. </distributionManagement>
  185. </project>