mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
This changes how we specify versions for dependencies, and plugins: - all versions are now listed in `dependencyManagement` and `pluginManagement` sections in the `mvn-defaults/pom.xml`. Usage of dependencies and plugins should be done without explicit `version` tag. Also: * unified discrepancies between versions of plugins and dependencies * bumped versions for commons-codec, commons-csv, commons-compress, docker-java this fixes #64
29 lines
954 B
XML
29 lines
954 B
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>
|
|
|
|
<artifactId>virtdata-processors</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<parent>
|
|
<artifactId>mvn-defaults</artifactId>
|
|
<groupId>io.nosqlbench</groupId>
|
|
<version>3.12.43-SNAPSHOT</version>
|
|
<relativePath>../mvn-defaults</relativePath>
|
|
</parent>
|
|
|
|
<name>virtdata-processors</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.squareup</groupId>
|
|
<artifactId>javapoet</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.nosqlbench</groupId>
|
|
<artifactId>virtdata-annotations</artifactId>
|
|
<version>3.12.43-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|