liquibase-clickhouse
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.mediarithmics</groupId> <artifactId>liquibase-clickhouse</artifactId> <version>0.7.2</version> </dependency>
<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.mediarithmics</groupId> <artifactId>liquibase-clickhouse</artifactId> <version>0.7.2</version> <packaging>jar</packaging> <inceptionYear>2020</inceptionYear> <name>Liquibase extension for ClickHouse</name> <description>A Liquibase extension for the ClickHouse database.</description> <url>https://github.com/mediarithmics/liquibase-clickhouse</url> <organization> <name>Mediarithmics</name> <url>https://www.mediarithmics.com</url> </organization> <developers> <developer> <id>pdalpra@mediarithmics.com</id> <name>Pierre Dal-Pra</name> <organization>Mediarithmics</organization> </developer> <developer> <id>skireev@mediarithmics.com</id> <name>Sergei Kireev</name> <organization>mediarithmics</organization> </developer> <developer> <id>iepimakhov@mediarithmics.com</id> <name>Igor Epimakhov</name> <organization>mediarithmics</organization> </developer> </developers> <scm> <connection>scm:git:git:@github.com:mediarithmics/liquibase-clickhouse.git</connection> <developerConnection>scm:git:git:@github.com:mediarithmics/liquibase-clickhouse.git</developerConnection> <url>https://github.com/mediarithmics/liquibase-clickhouse</url> <tag>0.7.2</tag> </scm> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> <distribution>repo</distribution> </license> </licenses> <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> <properties> <encoding>UTF-8</encoding> <project.build.sourceEncoding>${encoding}</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <clickhouse-jdbc.version>0.3.1</clickhouse-jdbc.version> <liquibase.version>4.6.1</liquibase.version> <junit.version>5.4.0</junit.version> <test-containers.version>1.15.3</test-containers.version> <nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version> <maven-plugin-plugin.version>3.6.0</maven-plugin-plugin.version> <maven-surefire-plugin.version>2.22.1</maven-surefire-plugin.version> <license-maven-plugin.version>2.0.0</license-maven-plugin.version> <maven-shade-plugin.version>3.2.0</maven-shade-plugin.version> <fmt-maven-plugin.version>2.9.1</fmt-maven-plugin.version> <impsort-maven-plugin.version>1.4.1</impsort-maven-plugin.version> <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> <maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version> <maven-source-plugin.version>3.2.1</maven-source-plugin.version> <snakeyaml.version>1.28</snakeyaml.version> <typesafe-config.version>1.4.1</typesafe-config.version> </properties> <dependencies> <dependency> <groupId>ru.yandex.clickhouse</groupId> <artifactId>clickhouse-jdbc</artifactId> <version>${clickhouse-jdbc.version}</version> </dependency> <dependency> <groupId>org.liquibase</groupId> <artifactId>liquibase-core</artifactId> <version>${liquibase.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>clickhouse</artifactId> <version>${test-containers.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>junit-jupiter</artifactId> <version>${test-containers.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>${snakeyaml.version}</version> </dependency> <dependency> <groupId>com.typesafe</groupId> <artifactId>config</artifactId> <version>${typesafe-config.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</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>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <tagNameFormat>@{project.version}</tagNameFormat> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>${license-maven-plugin.version}</version> <configuration> <licenseName>apache_v2</licenseName> <licenseFile>LICENSE</licenseFile> <canUpdateCopyright>true</canUpdateCopyright> <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage> <includes> <include>**/*.java</include> </includes> <roots> <root>src/main/java</root> <root>src/test</root> </roots> </configuration> <executions> <execution> <phase>process-sources</phase> <goals> <goal>update-file-header</goal> <goal>update-project-license</goal> <goal>add-third-party</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus-staging-maven-plugin.version}</version> <configuration> <serverId>sonatype-nexus-staging</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>${maven-shade-plugin.version}</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <shadedArtifactAttached>true</shadedArtifactAttached> <shadedClassifierName>shaded</shadedClassifierName> <relocations> <relocation> <pattern>com.</pattern> <shadedPattern>shaded.liquibase.com.</shadedPattern> </relocation> <relocation> <pattern>net.</pattern> <shadedPattern>shaded.liquibase.net.</shadedPattern> </relocation> <relocation> <pattern>org.</pattern> <shadedPattern>shaded.liquibase.org.</shadedPattern> </relocation> <relocation> <pattern>ru.</pattern> <shadedPattern>shaded.liquibase.ru.</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.coveo</groupId> <artifactId>fmt-maven-plugin</artifactId> <version>${fmt-maven-plugin.version}</version> <configuration> <skipSortingImports>true</skipSortingImports> </configuration> <executions> <execution> <phase>process-sources</phase> <goals> <goal>format</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> <plugin> <groupId>net.revelc.code</groupId> <artifactId>impsort-maven-plugin</artifactId> <version>${impsort-maven-plugin.version}</version> <configuration> <removeUnused>true</removeUnused> <groups>java.,javax.,liquibase.ext.clickhouse.</groups> <staticGroups>java,*</staticGroups> </configuration> <executions> <execution> <phase>process-sources</phase> <goals> <goal>sort</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>