liquibase-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.shshdxk</groupId> <artifactId>liquibase-maven-plugin</artifactId> <version>4.33.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.shshdxk</groupId> <artifactId>liquibase-maven-plugin</artifactId> <version>4.33.0</version> <packaging>maven-plugin</packaging> <name>liquibase-maven-plugin</name> <description>A Maven plugin wraps up some of the functionality of Liquibase</description> <url>http://www.liquibase.com/liquibase-maven-plugin</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <developers> <developer> <id>nvoxland</id> <name>Nathan Voxland</name> <email>nathan.voxland@liquibase.org</email> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>-6</timezone> </developer> </developers> <scm> <connection>scm:git:https://github.com/shshdxk/liquibase.git/liquibase-maven-plugin</connection> <developerConnection>scm:git:https://github.com/shshdxk/liquibase.git/liquibase-maven-plugin</developerConnection> <url>scm:git:https://github.com/shshdxk/liquibase.git/liquibase-maven-plugin</url> </scm> <dependencies> <dependency> <groupId>io.github.shshdxk</groupId> <artifactId>liquibase-core</artifactId> <version>4.33.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>2.3.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.9.10</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>3.9.10</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>3.9.10</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-compat</artifactId> <version>3.9.10</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> </plugin> </plugins> </build> </project>