nosqlbench/virtdata-processors/pom.xml
Alex Ott 44af1e22dd [issue-64] Rework specification of the dependency versions
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
2020-03-18 12:13:44 +01:00

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>