mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2024-11-23 09:16:37 -06:00
150 lines
5.4 KiB
XML
150 lines
5.4 KiB
XML
<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>
|
|
|
|
<parent>
|
|
<artifactId>mvn-defaults</artifactId>
|
|
<groupId>io.nosqlbench</groupId>
|
|
<version>3.12.35-SNAPSHOT</version>
|
|
<relativePath>../mvn-defaults</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>virtdata-userlibs</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>virtdata-userlibs</name>
|
|
<url>http://nosqlbench.io/</url>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.nosqlbench</groupId>
|
|
<artifactId>virtdata-realdata</artifactId>
|
|
<version>3.12.35-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.nosqlbench</groupId>
|
|
<artifactId>virtdata-lib-realer</artifactId>
|
|
<version>3.12.35-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.nosqlbench</groupId>
|
|
<artifactId>virtdata-api</artifactId>
|
|
<version>3.12.35-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.nosqlbench</groupId>
|
|
<artifactId>virtdata-lib-random</artifactId>
|
|
<version>3.12.35-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>virtdata-lib-basics</artifactId>
|
|
<groupId>io.nosqlbench</groupId>
|
|
<version>3.12.35-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>virtdata-lib-curves4</artifactId>
|
|
<groupId>io.nosqlbench</groupId>
|
|
<version>3.12.35-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.nosqlbench</groupId>
|
|
<artifactId>docsys</artifactId>
|
|
<version>3.12.35-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.vladsch.flexmark</groupId>
|
|
<artifactId>flexmark-html-parser</artifactId>
|
|
<version>0.50.20</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>2.8.5</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.testng</groupId>
|
|
<artifactId>testng</artifactId>
|
|
<version>6.13.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.assertj</groupId>
|
|
<artifactId>assertj-core-java8</artifactId>
|
|
<version>1.0.0m1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
<version>2.22.0</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>integration-test</goal>
|
|
<goal>verify</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<additionalClasspathElements>
|
|
<additionalClasspathElement>${project.basedir}/target/virtdata-userlibs-${project.version}.jar</additionalClasspathElement>
|
|
</additionalClasspathElements>
|
|
<includes>
|
|
<include>**/*Integrated*Test*.java</include>
|
|
</includes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<includes>
|
|
<include>META_INF/services/**</include>
|
|
<include>META-INF/functions</include>
|
|
<include>data/**</include>
|
|
<include>docs-for-virtdata/**</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>shade</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.2.1</version>
|
|
<configuration>
|
|
<transformers combine.children="append">
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
|
<mainClass>io.nosqlbench.virtdata.userlibs.apps.VirtDataMainApp</mainClass>
|
|
</transformer>
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
|
|
</transformers>
|
|
<minimizeJar>false</minimizeJar>
|
|
<finalName>${project.artifactId}</finalName>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
|
|
|
|
</project>
|