2020-05-11 14:26:18 -05:00
|
|
|
<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">
|
2020-05-08 15:50:55 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>io.nosqlbench</groupId>
|
|
|
|
<artifactId>mvn-defaults</artifactId>
|
2020-06-18 11:22:49 -05:00
|
|
|
<version>3.12.124-SNAPSHOT</version>
|
2020-05-08 15:50:55 -05:00
|
|
|
<relativePath>../mvn-defaults</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>driver-cql-shaded</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
|
|
|
|
<description>
|
|
|
|
A Shaded CQL ActivityType driver for http://nosqlbench.io/
|
|
|
|
</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!-- core dependencies -->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.nosqlbench</groupId>
|
|
|
|
<artifactId>engine-api</artifactId>
|
2020-06-18 11:22:49 -05:00
|
|
|
<version>3.12.124-SNAPSHOT</version>
|
2020-05-08 15:50:55 -05:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.datastax.dse</groupId>
|
|
|
|
<artifactId>dse-java-driver-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.datastax.dse</groupId>
|
|
|
|
<artifactId>dse-java-driver-extras</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.datastax.dse</groupId>
|
|
|
|
<artifactId>dse-java-driver-mapping</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- For CQL compression option -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.lz4</groupId>
|
|
|
|
<artifactId>lz4-java</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- For CQL compression option -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.xerial.snappy</groupId>
|
|
|
|
<artifactId>snappy-java</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <groupId>io.netty</groupId>-->
|
|
|
|
<!-- <artifactId>netty-transport-native-epoll</artifactId>-->
|
|
|
|
<!-- <version>4.1.36.Final</version>-->
|
|
|
|
<!-- <classifier>linux-x86_64</classifier>-->
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <groupId>org.yaml</groupId>-->
|
|
|
|
<!-- <artifactId>snakeyaml</artifactId>-->
|
|
|
|
<!-- <version>1.23</version>-->
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <groupId>org.apache.commons</groupId>-->
|
|
|
|
<!-- <artifactId>commons-lang3</artifactId>-->
|
|
|
|
<!-- <version>3.7</version>-->
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <groupId>org.slf4j</groupId>-->
|
|
|
|
<!-- <artifactId>slf4j-api</artifactId>-->
|
|
|
|
<!-- <version>1.7.25</version>-->
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
<!-- test only scope -->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.2.3</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals><goal>shade</goal></goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
2020-05-14 15:12:25 -05:00
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
2020-05-08 15:50:55 -05:00
|
|
|
<promoteTransitiveDependencies>true</promoteTransitiveDependencies>
|
|
|
|
<createSourcesJar>true</createSourcesJar>
|
|
|
|
<!-- <shadedArtifactAttached>true</shadedArtifactAttached>-->
|
|
|
|
<!-- <shadedClassifierName>shaded</shadedClassifierName>-->
|
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>com.google.common</pattern>
|
|
|
|
<shadedPattern>com.datastax.internal.com_google_common</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<!-- <relocation>-->
|
|
|
|
<!-- <pattern>com.datastax</pattern>-->
|
|
|
|
<!-- <shadedPattern>dse19.com.datastax</shadedPattern>-->
|
|
|
|
<!-- </relocation>-->
|
|
|
|
<!-- <relocation>-->
|
|
|
|
<!-- <pattern>io.netty</pattern>-->
|
|
|
|
<!-- <shadedPattern>dse19.io.netty</shadedPattern>-->
|
|
|
|
<!-- </relocation>-->
|
|
|
|
</relocations>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>*:*</include>
|
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
<transformers combine.children="append">
|
2020-05-11 14:26:18 -05:00
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
2020-05-08 15:50:55 -05:00
|
|
|
<mainClass>io.nosqlbench.engine.cli.NBCLI</mainClass>
|
|
|
|
</transformer>
|
|
|
|
</transformers>
|
|
|
|
<!-- <finalName>${project.artifactId}</finalName>-->
|
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>*:*</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>META-INF/*.SF</exclude>
|
|
|
|
<exclude>META-INF/*.DSA</exclude>
|
|
|
|
<exclude>META-INF/*.RSA</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|