mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2024-11-26 02:30:39 -06:00
117 lines
5.1 KiB
XML
117 lines
5.1 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.139-SNAPSHOT</version>
|
|
<relativePath>../mvn-defaults</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>virtdata-lib-curves4</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>virtdata-lib-curves4</name>
|
|
<url>http://nosqlbench.io/</url>
|
|
<description>
|
|
Statistical sampling library for use in virtdata libraries, based
|
|
on apache commons math 4
|
|
</description>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>io.nosqlbench</groupId>
|
|
<artifactId>virtdata-api</artifactId>
|
|
<version>3.12.139-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.nosqlbench</groupId>
|
|
<artifactId>virtdata-lib-basics</artifactId>
|
|
<version>3.12.139-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- <dependency>-->
|
|
<!-- <!– key methods were exposed in the commons math4 statistics library-->
|
|
<!-- which allow direct access to cumulative distribution calculations.-->
|
|
<!-- It appears there is no way to access them via a regular release.-->
|
|
<!-- This small enhancement is being held back from release by many other things-->
|
|
<!-- which are unrelated. It is not satisfying to embed this, but it is less-->
|
|
<!-- bad than breaking builds due to snapshot repo limits. –>-->
|
|
<!-- <groupId>org.apache.commons</groupId>-->
|
|
<!-- <artifactId>commons-math4</artifactId>-->
|
|
<!-- <version>4.0-SNAPSHOT</version>-->
|
|
<!-- <optional>true</optional>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.apache.commons</groupId>-->
|
|
<!-- <artifactId>commons-statistics-distribution</artifactId>-->
|
|
<!-- <version>0.1-SNAPSHOT</version>-->
|
|
<!-- <optional>true</optional>-->
|
|
<!-- </dependency>-->
|
|
|
|
<dependency>
|
|
<groupId>org.assertj</groupId>
|
|
<artifactId>assertj-core</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<!-- TODO: Replace this or bundle internal artifact -->
|
|
<!--<dependency>-->
|
|
<!--<groupId>org.apache.commons</groupId>-->
|
|
<!--<artifactId>commons-statistics-distribution</artifactId>-->
|
|
<!--<version>1.0</version>-->
|
|
<!--</dependency>-->
|
|
<!--<dependency>-->
|
|
<!--<groupId>org.apache.commons</groupId>-->
|
|
<!--<artifactId>commons-statistics-distribution</artifactId>-->
|
|
<!--<version>0.1-SNAPSHOT</version>-->
|
|
<!--</dependency>-->
|
|
</dependencies>
|
|
|
|
<!-- <profiles>-->
|
|
<!-- <profile>-->
|
|
<!-- <id>shade</id>-->
|
|
<!-- <activation>-->
|
|
<!-- <activeByDefault>true</activeByDefault>-->
|
|
<!-- </activation>-->
|
|
<!-- <build>-->
|
|
<!-- <plugins>-->
|
|
<!-- <plugin>-->
|
|
<!-- <artifactId>maven-shade-plugin</artifactId>-->
|
|
<!-- <dependencies>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.ow2.asm</groupId>-->
|
|
<!-- <artifactId>asm</artifactId>-->
|
|
<!-- <version>7.0</version>-->
|
|
<!-- </dependency>-->
|
|
<!-- </dependencies>-->
|
|
<!-- <configuration>-->
|
|
<!-- <relocations>-->
|
|
<!-- <relocation>-->
|
|
<!-- <pattern>org.apache.commons.statistics</pattern>-->
|
|
<!-- <shadedPattern>io.nosqlbench.virtdata.shaded.oac.statistics</shadedPattern>-->
|
|
<!-- </relocation>-->
|
|
<!-- <relocation>-->
|
|
<!-- <pattern>org.apache.commons.math4.stat</pattern>-->
|
|
<!-- <shadedPattern>io.nosqlbench.virtdata.shaded.oac.statistics</shadedPattern>-->
|
|
<!-- </relocation>-->
|
|
<!-- <relocation>-->
|
|
<!-- <pattern>org.apache.commons.statistics.distribution</pattern>-->
|
|
<!-- <shadedPattern>io.nosqlbench.virtdata.shaded.oac.statistics.distribution</shadedPattern>-->
|
|
<!-- </relocation>-->
|
|
<!-- </relocations>-->
|
|
<!-- </configuration>-->
|
|
<!-- </plugin>-->
|
|
<!-- </plugins>-->
|
|
<!-- </build>-->
|
|
<!-- </profile>-->
|
|
<!-- </profiles>-->
|
|
|
|
</project>
|