liquibase-unexpected-changeset-detector-spring-boot-autoconfigure
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.wicked539</groupId> <artifactId>liquibase-unexpected-changeset-detector-spring-boot-autoconfigure</artifactId> <version>0.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>io.github.wicked539</groupId> <artifactId>liquibase-unexpected-changeset-detector-spring-boot-autoconfigure</artifactId> <version>0.2.0</version> <name>${project.groupId}:${project.artifactId}</name> <description>Small Spring Boot autoconfiguration library that checks for unexpected Liquibase changesets in the database.</description> <url>https://github.com/wicked539/liquibase-unexpected-changeset-detector-spring-boot-autoconfigure/tree/main</url> <licenses> <license> <name>BSD 3-Clause License</name> <url>https://opensource.org/license/bsd-3-clause</url> </license> </licenses> <developers> <developer> <name>Sven Mueller</name> <email>sven.mueller83@gmail.com</email> <organizationUrl>https://github.com/wicked539</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/wicked539/liquibase-unexpected-changeset-detector-spring-boot-autoconfigure.git</connection> <developerConnection>scm:git:ssh://git@github.com/wicked539/liquibase-unexpected-changeset-detector-spring-boot-autoconfigure.git</developerConnection> <url>https://github.com/wicked539/liquibase-unexpected-changeset-detector-spring-boot-autoconfigure/tree/main</url> <tag>liquibase-unexpected-changeset-detector-spring-boot-autoconfigure-0.2.0</tag> </scm> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <spring-boot.version>3.2.4</spring-boot.version> <liquibase.version>4.24.0</liquibase.version> <h2.version>2.2.224</h2.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot</artifactId> <version>${spring-boot.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <version>${spring-boot.version}</version> </dependency> <dependency> <groupId>org.liquibase</groupId> <artifactId>liquibase-core</artifactId> <version>${liquibase.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <version>${spring-boot.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>${h2.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId> <version>${spring-boot.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>deploy</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.2</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.4.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <tokenAuth>true</tokenAuth> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>