2020-03-03 14:35:52 -06: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-03-03 13:22:31 -06:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2020-02-20 15:37:57 -06:00
|
|
|
|
2020-03-03 13:22:31 -06:00
|
|
|
<parent>
|
|
|
|
<artifactId>mvn-defaults</artifactId>
|
|
|
|
<groupId>io.nosqlbench</groupId>
|
2020-05-01 12:54:48 -05:00
|
|
|
<version>3.12.97-SNAPSHOT</version>
|
2020-03-03 13:22:31 -06:00
|
|
|
<relativePath>../mvn-defaults</relativePath>
|
|
|
|
</parent>
|
2020-02-20 15:37:57 -06:00
|
|
|
|
2020-03-03 13:22:31 -06:00
|
|
|
<artifactId>engine-docs</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
<description>CLI for nosqlbench.</description>
|
2020-02-20 15:37:57 -06:00
|
|
|
|
2020-03-03 13:22:31 -06:00
|
|
|
<properties>
|
|
|
|
<javadoc.name>nosqlbench Docs</javadoc.name>
|
|
|
|
</properties>
|
2020-02-20 15:37:57 -06:00
|
|
|
|
2020-03-03 13:22:31 -06:00
|
|
|
<dependencies>
|
2020-02-20 15:37:57 -06:00
|
|
|
|
2020-03-03 13:22:31 -06:00
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <groupId>io.nosqlbench</groupId>-->
|
|
|
|
<!-- <artifactId>engine-vis</artifactId>-->
|
|
|
|
<!-- <version>2.11.31-SNAPSHOT</version>-->
|
|
|
|
<!-- </dependency>-->
|
2020-02-20 15:37:57 -06:00
|
|
|
|
2020-03-03 13:22:31 -06:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.nosqlbench</groupId>
|
2020-03-04 13:33:58 -06:00
|
|
|
<artifactId>docsys</artifactId>
|
2020-05-01 12:54:48 -05:00
|
|
|
<version>3.12.97-SNAPSHOT</version>
|
2020-03-03 13:22:31 -06:00
|
|
|
</dependency>
|
2020-02-20 15:37:57 -06:00
|
|
|
|
2020-03-03 13:22:31 -06:00
|
|
|
</dependencies>
|
2020-02-20 15:37:57 -06:00
|
|
|
|
2020-03-03 13:22:31 -06:00
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
2020-02-20 15:37:57 -06:00
|
|
|
|
2020-03-03 13:22:31 -06:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>shade</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<transformers combine.children="append">
|
2020-03-03 14:35:52 -06:00
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
2020-03-03 13:22:31 -06:00
|
|
|
<mainClass>io.nosqlbench.cli.EBCLI</mainClass>
|
|
|
|
</transformer>
|
|
|
|
</transformers>
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
2020-02-20 15:37:57 -06:00
|
|
|
|
|
|
|
|
2020-03-03 13:22:31 -06:00
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>*:*</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>META-INF/*.SF</exclude>
|
|
|
|
<exclude>META-INF/*.DSA</exclude>
|
|
|
|
<exclude>META-INF/*.RSA</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
2020-02-20 15:37:57 -06:00
|
|
|
|
|
|
|
|
2020-03-03 13:22:31 -06:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2020-02-20 15:37:57 -06:00
|
|
|
|
|
|
|
|
|
|
|
</project>
|