wildfly-liquibase
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.jamesnetherton</groupId> <artifactId>wildfly-liquibase</artifactId> <version>2.2.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.jamesnetherton</groupId> <artifactId>wildfly-liquibase</artifactId> <version>2.2.0</version> <packaging>pom</packaging> <name>wildfly-liquibase</name> <description>The WildFly Liquibase Subsystem</description> <url>https://github.com/jamesnetherton/wildfly-liquibase</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <!-- Versions --> <version.junit>4.13.1</version.junit> <version.org.eclipse.egit.github>2.1.5</version.org.eclipse.egit.github> <version.org.jboss.arquillian>1.6.0.Final</version.org.jboss.arquillian> <version.org.jdom>2.0.6</version.org.jdom> <version.org.liquibase>4.3.3</version.org.liquibase> <version.org.slf4j>1.7.30</version.org.slf4j> <version.org.snakeyaml>1.26</version.org.snakeyaml> <version.org.wildfly>23.0.1.Final</version.org.wildfly> <version.org.wildfly.arquillian>3.0.1.Final</version.org.wildfly.arquillian> <version.org.wildfly.core>15.0.1.Final</version.org.wildfly.core> <version.org.wildfly.common>1.5.2.Final</version.org.wildfly.common> <!-- Plugin versions --> <version.antrun.plugin>3.0.0</version.antrun.plugin> <version.assembly.plugin>3.2.0</version.assembly.plugin> <version.compiler.plugin>3.8.1</version.compiler.plugin> <version.dependency.plugin>3.1.2</version.dependency.plugin> <version.exec.plugin>1.6.0</version.exec.plugin> <version.gmaven.plugin>2.1.1</version.gmaven.plugin> <version.gpg.plugin>1.6</version.gpg.plugin> <version.license.plugin>2.0.0</version.license.plugin> <version.impsort.plugin>1.4.1</version.impsort.plugin> <version.javadoc.plugin>3.2.0</version.javadoc.plugin> <version.release.plugin>3.0.0-M1</version.release.plugin> <version.galleon.plugin>4.2.5.Final</version.galleon.plugin> <version.resources.plugin>3.1.0</version.resources.plugin> <version.source.plugin>3.2.0</version.source.plugin> <version.surefire.plugin>3.0.0-M4</version.surefire.plugin> <version.wildfly.galleon.plugin>5.1.1.Final</version.wildfly.galleon.plugin> </properties> <scm> <connection>scm:git:git://github.com/jamesnetherton/wildfly-liquibase.git</connection> <developerConnection>scm:git:git@github.com:jamesnetherton/wildfly-liquibase.git</developerConnection> <url>${project.url}</url> <tag>2.2.0</tag> </scm> <developers> <developer> <name>James Netherton</name> <url>https://github.com/jamesnetherton</url> <timezone>0</timezone> </developer> </developers> <issueManagement> <url>https://github.com/jamesnetherton/wildfly-liquibase/issues</url> <system>GitHub</system> </issueManagement> <licenses> <license> <name>Apache 2.0</name> <url>https://opensource.org/licenses/Apache-2.0</url> <distribution>repo</distribution> </license> </licenses> <distributionManagement> <repository> <id>oss-sonatype-staging</id> <name>Sonatype Staging Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>oss-sonatype-snapshots</id> <name>OSS Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <repositories> <repository> <id>central</id> <url>https://repo1.maven.org/maven2</url> <snapshots> <enabled>false</enabled> </snapshots> <releases> <enabled>true</enabled> </releases> </repository> <repository> <id>jboss-public-repository</id> <url>https://repository.jboss.org/nexus/content/groups/public</url> <snapshots> <enabled>false</enabled> </snapshots> <releases> <enabled>true</enabled> </releases> </repository> <repository> <id>redhat-ga-repository</id> <url>https://maven.repository.redhat.com/ga</url> <snapshots> <enabled>false</enabled> </snapshots> <releases> <enabled>true</enabled> </releases> </repository> </repositories> <modules> <module>subsystem</module> <module>feature-pack</module> <module>distro</module> <module>testextension</module> <module>itests</module> </modules> <dependencyManagement> <dependencies> <!-- Arquillian --> <dependency> <groupId>org.jboss.arquillian</groupId> <artifactId>arquillian-bom</artifactId> <version>${version.org.jboss.arquillian}</version> <type>pom</type> <scope>import</scope> </dependency> <!-- JDom --> <dependency> <groupId>org.jdom</groupId> <artifactId>jdom2</artifactId> <version>${version.org.jdom}</version> </dependency> <!-- Junit --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${version.junit}</version> </dependency> <!-- Liquibase --> <dependency> <groupId>org.liquibase</groupId> <artifactId>liquibase-cdi</artifactId> <version>${version.org.liquibase}</version> </dependency> <dependency> <groupId>org.liquibase</groupId> <artifactId>liquibase-core</artifactId> <version>${version.org.liquibase}</version> <exclusions> <exclusion> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </exclusion> </exclusions> </dependency> <!-- SLF4J --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${version.org.slf4j}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-nop</artifactId> <version>${version.org.slf4j}</version> </dependency> <!-- SnakeYAML --> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>${version.org.snakeyaml}</version> </dependency> <!-- WildFly --> <dependency> <groupId>org.wildfly</groupId> <artifactId>wildfly-parent</artifactId> <version>${version.org.wildfly}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.wildfly</groupId> <artifactId>wildfly-dist</artifactId> <version>${version.org.wildfly}</version> <type>tar.gz</type> </dependency> <!-- WildFly Arquillian--> <dependency> <groupId>org.wildfly.arquillian</groupId> <artifactId>wildfly-arquillian-container-managed</artifactId> <version>${version.org.wildfly.arquillian}</version> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>${version.antrun.plugin}</version> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>${version.assembly.plugin}</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${version.compiler.plugin}</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>${version.dependency.plugin}</version> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>${version.release.plugin}</version> <configuration> <arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments> <tagNameFormat>@{project.version}</tagNameFormat> <releaseProfiles>release</releaseProfiles> <autoVersionSubmodules>true</autoVersionSubmodules> <preparationGoals>clean install</preparationGoals> </configuration> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>${version.resources.plugin}</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${version.surefire.plugin}</version> </plugin> <plugin> <groupId>net.revelc.code</groupId> <artifactId>impsort-maven-plugin</artifactId> <version>${version.impsort.plugin}</version> <executions> <execution> <id>sort-imports</id> <goals> <goal>sort</goal> </goals> <configuration> <removeUnused>true</removeUnused> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.gmaven</groupId> <artifactId>groovy-maven-plugin</artifactId> <version>${version.gmaven.plugin}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>${version.exec.plugin}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>${version.license.plugin}</version> <configuration> <organizationName>James Netherton</organizationName> <licenseName>apache_v2</licenseName> <inceptionYear>2017</inceptionYear> <failOnMissingHeader>true</failOnMissingHeader> <roots> <root>src</root> </roots> <excludes> <exclude>**/changelogs/*</exclude> <excludes>**/config/*.xml</excludes> <excludes>**/modules/**/module.xml</excludes> <excludes>**/*.template</excludes> </excludes> </configuration> </plugin> <plugin> <groupId>org.jboss.galleon</groupId> <artifactId>galleon-maven-plugin</artifactId> <version>${version.galleon.plugin}</version> </plugin> <plugin> <groupId>org.wildfly.galleon-plugins</groupId> <artifactId>wildfly-galleon-maven-plugin</artifactId> <version>${version.wildfly.galleon.plugin}</version> <dependencies> <dependency> <groupId>org.wildfly.core</groupId> <artifactId>wildfly-embedded</artifactId> <version>${version.org.wildfly.core}</version> </dependency> <dependency> <groupId>org.wildfly.common</groupId> <artifactId>wildfly-common</artifactId> <version>${version.org.wildfly.common}</version> </dependency> </dependencies> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>net.revelc.code</groupId> <artifactId>impsort-maven-plugin</artifactId> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>${version.gpg.plugin}</version> <configuration> <passphrase>${gpg.passphrase}</passphrase> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> <executions> <execution> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>${version.source.plugin}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>${version.javadoc.plugin}</version> <configuration> <encoding>${project.build.sourceEncoding}</encoding> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>licenseHeaders</id> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <executions> <execution> <goals> <goal>update-file-header</goal> </goals> <phase>process-sources</phase> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>licenseCheck</id> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <executions> <execution> <goals> <goal>check-file-header</goal> </goals> <phase>process-sources</phase> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>examples</id> <modules> <module>examples/example-cdi</module> <module>examples/example-jar</module> <module>examples/example-war</module> </modules> <build /> </profile> <profile> <id>docs</id> <build> <plugins> <plugin> <groupId>org.codehaus.gmaven</groupId> <artifactId>groovy-maven-plugin</artifactId> <executions> <execution> <id>generate-changelog</id> <phase>generate-resources</phase> <goals> <goal>execute</goal> </goals> <configuration> <source>${project.basedir}/changelog.groovy</source> </configuration> </execution> <execution> <id>generate-readme</id> <phase>generate-resources</phase> <goals> <goal>execute</goal> </goals> <configuration> <source>${project.basedir}/readmegen.groovy</source> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>org.eclipse.mylyn.github</groupId> <artifactId>org.eclipse.egit.github.core</artifactId> <version>${version.org.eclipse.egit.github}</version> </dependency> </dependencies> </plugin> </plugins> </build> </profile> </profiles> </project>