liquibase-clickhouse
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.genestack</groupId>
<artifactId>liquibase-clickhouse</artifactId>
<version>0.8.6</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.genestack</groupId>
<artifactId>liquibase-clickhouse</artifactId>
<name>Liquibase extension for ClickHouse</name>
<version>0.8.6</version>
<description>A Liquibase extension for the ClickHouse database.</description>
<url>https://github.com/genestack/liquibase-clickhouse</url>
<inceptionYear>2020</inceptionYear>
<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>
<contributors>
<contributor>
<name>Viacheslav Pivovarov</name>
<email>viacheslav.pivovarov@genestack.com</email>
<organization>Genestack</organization>
</contributor>
<contributor>
<name>Oleg Kunitsyn</name>
<email>oleg.kunitsyn@genestack.com</email>
<organization>Genestack</organization>
</contributor>
<contributor>
<name>Mikhail Smazhevsky</name>
<email>mikhail.smazhevsky@genestack.com</email>
<organization>Genestack</organization>
</contributor>
</contributors>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git:@github.com:genestack/liquibase-clickhouse.git</connection>
<developerConnection>scm:git:git:@github.com:genestack/liquibase-clickhouse.git</developerConnection>
<url>https://github.com/genestack/liquibase-clickhouse</url>
</scm>
<organization>
<name>Genestack Limited</name>
<url>https://genestack.com</url>
</organization>
<build>
<plugins>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${maven-checkstyle-plugin.version}</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<consoleOutput>true</consoleOutput>
<configLocation>${project.basedir}/checkstyle.xml</configLocation>
<failOnViolation>true</failOnViolation>
</configuration>
</plugin>
<plugin>
<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>
<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>
<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>
<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>
<configuration>
<licenseName>apache_v2</licenseName>
<licenseFile>LICENSE</licenseFile>
<canUpdateCopyright>false</canUpdateCopyright>
<addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
<includes>
<include>**/*.java</include>
</includes>
<roots>
<root>src/main/java</root>
<root>src/test</root>
</roots>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>${central-publishing-maven-plugin.version}</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>maven</publishingServerId>
<autoPublish>true</autoPublish>
<waitUntil>published</waitUntil>
</configuration>
</plugin>
<plugin>
<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>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.clickhouse</groupId>
<artifactId>clickhouse-jdbc</artifactId>
<version>0.9.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
<version>4.32.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.13.1</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>junit-jupiter-params</artifactId>
<groupId>org.junit.jupiter</groupId>
</exclusion>
<exclusion>
<artifactId>junit-jupiter-engine</artifactId>
<groupId>org.junit.jupiter</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>clickhouse</artifactId>
<version>1.21.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>testcontainers</artifactId>
<groupId>org.testcontainers</groupId>
</exclusion>
<exclusion>
<artifactId>jdbc</artifactId>
<groupId>org.testcontainers</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
<version>1.21.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>testcontainers</artifactId>
<groupId>org.testcontainers</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.13.1</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>opentest4j</artifactId>
<groupId>org.opentest4j</groupId>
</exclusion>
<exclusion>
<artifactId>junit-platform-commons</artifactId>
<groupId>org.junit.platform</groupId>
</exclusion>
<exclusion>
<artifactId>apiguardian-api</artifactId>
<groupId>org.apiguardian</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.17</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.17</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
<version>5.3.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<central-publishing-maven-plugin.version>0.7.0</central-publishing-maven-plugin.version>
<maven-checkstyle-plugin.version>3.6.0</maven-checkstyle-plugin.version>
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
<maven-gpg-plugin.version>3.2.7</maven-gpg-plugin.version>
<test-containers.version>1.21.0</test-containers.version>
<clickhouse-jdbc.version>0.9.0</clickhouse-jdbc.version>
<maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version>
<slf4j.version>2.0.17</slf4j.version>
<project.build.sourceEncoding>${encoding}</project.build.sourceEncoding>
<junit.version>5.13.1</junit.version>
<typesafe-config.version>1.4.3</typesafe-config.version>
<snakeyaml.version>2.4</snakeyaml.version>
<apache.http5.version>5.3.1</apache.http5.version>
<maven.compiler.source>21</maven.compiler.source>
<liquibase.version>4.32.0</liquibase.version>
<maven-shade-plugin.version>3.6.0</maven-shade-plugin.version>
<encoding>UTF-8</encoding>
<maven.compiler.target>21</maven.compiler.target>
<maven-surefire-plugin.version>3.5.3</maven-surefire-plugin.version>
<license-maven-plugin.version>2.5.0</license-maven-plugin.version>
</properties>
</project>