123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!-- Copyright 2017-2025 Steinar Bang -->
- <!-- -->
- <!-- Licensed under the Apache License, Version 2.0 (the "License"); -->
- <!-- you may not use this file except in compliance with the License. -->
- <!-- You may obtain a copy of the License at -->
- <!-- http://www.apache.org/licenses/LICENSE-2.0 -->
- <!-- Unless required by applicable law or agreed to in writing, -->
- <!-- software distributed under the License is distributed on an "AS IS", -->
- <!-- BASIS WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -->
- <!-- or implied. -->
- <!-- See the License for the specific language governing permissions and -->
- <!-- limitations under the License. -->
- <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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>no.priv.bang.karaf</groupId>
- <artifactId>liquibase-karaf-feature</artifactId>
- <version>4.31.1-SNAPSHOT</version>
- <packaging>pom</packaging>
- <name>liquibase-core karaf feature parent</name>
- <description>An apache karaf feature for the liquibase RDMBS schema management.</description>
- <url>https://github.com/steinarb/liquibase-karaf-feature</url>
- <properties>
- <liquibase.version>4.31.0</liquibase.version>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <maven.bundle.plugin.version>5.1.9</maven.bundle.plugin.version>
- <karaf.version>4.4.7</karaf.version>
- <commons-beanutils.version>1.9.4</commons-beanutils.version>
- <!-- versions of dependencies used in integration and unit tests -->
- <junit.jupiter.version>5.11.4</junit.jupiter.version>
- <mockito.version>5.15.2</mockito.version>
- <assertj.version>3.27.3</assertj.version>
- <osgi-service-adapters.version>1.2.0</osgi-service-adapters.version>
- <pax.jdbc.version>1.5.7</pax.jdbc.version>
- <derby.version>10.14.2.0</derby.version>
- </properties>
- <modules>
- <module>liquibase-core-karaf</module>
- <module>liquibase-bom</module>
- <module>liquibase-libraries</module>
- <module>liquibase-integration-test</module>
- </modules>
- <licenses>
- <license>
- <name>Apache License - v 2.0</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0</url>
- <comments>Applies to the files in this maven project</comments>
- </license>
- </licenses>
- <developers>
- <developer>
- <name>Steinar Bang</name>
- <email>sb@dod.no</email>
- </developer>
- </developers>
- <build>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.12.1</version>
- <configuration>
- <release>17</release>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
- <version>${maven.bundle.plugin.version}</version>
- </plugin>
- <plugin>
- <groupId>org.apache.karaf.tooling</groupId>
- <artifactId>karaf-maven-plugin</artifactId>
- <version>${karaf.version}</version>
- <extensions>true</extensions>
- <configuration>
- <startLevel>80</startLevel>
- <includeTransitiveDependency>false</includeTransitiveDependency>
- <aggregateFeatures>false</aggregateFeatures>
- <includeProjectArtifact>true</includeProjectArtifact>
- <primaryFeatureName>${karaf-feature-name}</primaryFeatureName>
- </configuration>
- <executions>
- <execution>
- <id>generate-features-file</id>
- <goals>
- <goal>features-generate-descriptor</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <version>2.4</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>3.1.1</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <version>3.3.0</version>
- </plugin>
- <plugin>
- <artifactId>maven-clean-plugin</artifactId>
- <version>3.1.0</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.22.2</version>
- <configuration>
- <useSystemClassLoader>false</useSystemClassLoader>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-release-plugin</artifactId>
- <version>3.0.0-M5</version>
- </plugin>
- <plugin>
- <groupId>org.sonatype.plugins</groupId>
- <artifactId>nexus-staging-maven-plugin</artifactId>
- <version>1.6.13</version>
- <extensions>true</extensions>
- <configuration>
- <serverId>ossrh</serverId>
- <nexusUrl>https://oss.sonatype.org/</nexusUrl>
- <autoReleaseAfterClose>true</autoReleaseAfterClose>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-release-plugin</artifactId>
- <configuration>
- <releaseProfiles>release-sign-artifact</releaseProfiles>
- <preparationGoals>clean versions:set-property verify</preparationGoals>
- <completionGoals>versions:set-property</completionGoals>
- <pushChanges>false</pushChanges>
- <localCheckout>true</localCheckout>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.sonatype.plugins</groupId>
- <artifactId>nexus-staging-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>versions-maven-plugin</artifactId>
- <version>2.8.1</version>
- <configuration>
- <property>bang-bom.version</property>
- <newVersion>${project.version}</newVersion>
- <generateBackupPoms>false</generateBackupPoms>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <scm>
- <url>https://github.com/steinarb/liquibase-karaf-feature.git</url>
- <connection>scm:git:https://github.com/steinarb/liquibase-karaf-feature.git</connection>
- <tag>HEAD</tag>
- </scm>
- <distributionManagement>
- <snapshotRepository>
- <id>ossrh</id>
- <url>https://oss.sonatype.org/content/repositories/snapshots</url>
- </snapshotRepository>
- <repository>
- <id>ossrh</id>
- <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
- </repository>
- </distributionManagement>
- <profiles>
- <profile>
- <id>release-sign-artifact</id>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-gpg-plugin</artifactId>
- <version>1.6</version>
- <executions>
- <execution>
- <id>sign-artifacts</id>
- <phase>verify</phase>
- <goals>
- <goal>sign</goal>
- </goals>
- <configuration>
- <gpgArguments>
- <arg>--pinentry-mode</arg>
- <arg>loopback</arg>
- </gpgArguments>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
- </project>
|