holo-shipper/dependency-reduced-pom.xml (132 lines of code) (raw):

<?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.alibaba.hologres</groupId> <artifactId>holo-shipper</artifactId> <name>holo-shipper</name> <version>1.2.3</version> <description>shipper for Hologres</description> <url>https://www.hologres.io/</url> <developers> <developer> <id>yubing.lyb</id> <name>yubing.lyb</name> <organization>alibaba-inc</organization> </developer> </developers> <licenses> <license> <name>hologres client license</name> <url>https://github.com/hologres</url> </license> </licenses> <scm> <connection>scm:git:git@github.com:hologres/hologres-connectors.git</connection> <developerConnection>scm:git:git@github.com:hologres/hologres-connectors.git</developerConnection> <url>git@github.com:hologres/hologres-connectors.git</url> </scm> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>8</source> <target>8</target> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.2.4</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer> <mainClass>com.alibaba.hologres.shipper.HoloShipper</mainClass> </transformer> </transformers> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>maven-central-release</id> <build> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <repository> <id>releases-yt</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>releases-yt</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> <properties> <hologres.connectors.version>1.4.3.1</hologres.connectors.version> </properties> </profile> </profiles> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> </dependencies> </project>