<?xml version="1.0" encoding="UTF-8"?> <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> <groupId>io.varietas</groupId> <artifactId>varietas-bom</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>pom</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <version.vertx.framework>3.4.1</version.vertx.framework> <version.logback>1.1.7</version.logback> <version.slf4j>1.7.21</version.slf4j> <version.lombok>1.16.16</version.lombok> <version.fasterxml.jackson>2.8.1</version.fasterxml.jackson> <version.googlecode.json-simple>1.1.1</version.googlecode.json-simple> <version.sourceforge.streamsupport>1.5.5</version.sourceforge.streamsupport> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> <name>varietas.io Bill of Materials</name> <description>varietas.io Bill of Materials POM</description> <url>https://varietas.io</url> <developers> <developer> <name>Michael Rhöse</name> <email>michael.rhoese@varietas.io</email> <organization>varietas.io</organization> <organizationUrl>varietas.io</organizationUrl> <roles> <role>Project owner</role> <role>Developer</role> <role>Student</role> </roles> </developer> </developers> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <dependencyManagement> <dependencies> <!-- varietas dependencies --> <dependency> <groupId>io.varietas</groupId> <artifactId>instrumentum-agrestis-imputare</artifactId> <version>1.0.0-SNAPSHOT</version> </dependency> <dependency> <groupId>io.varietas</groupId> <artifactId>instrumentum-simul</artifactId> <version>1.0.0-SNAPSHOT</version> </dependency> <!-- Event bus and reactiv framework --> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-core</artifactId> <version>${version.vertx.framework}</version> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-sync</artifactId> <version>${version.vertx.framework}</version> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-rx</artifactId> <version>${version.vertx.framework}</version> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-rx-java</artifactId> <version>${version.vertx.framework}</version> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-tcp-eventbus-bridge</artifactId> <version>${version.vertx.framework}</version> </dependency> <!-- Dependency for logging with logback --> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${version.logback}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <version>${version.slf4j}</version> </dependency> <!-- Framework to reducing boilerplate code --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${version.lombok}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>${version.fasterxml.jackson}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>${version.fasterxml.jackson}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${version.fasterxml.jackson}</version> </dependency> <dependency> <groupId>com.googlecode.json-simple</groupId> <artifactId>json-simple</artifactId> <version>${version.googlecode.json-simple}</version> </dependency> <!-- Dependency for byte code analysis. The internal used asm classes couldn't be used. --> <dependency> <groupId>io.github.lukehutch</groupId> <artifactId>fast-classpath-scanner</artifactId> <version>2.0.21</version> </dependency> <!-- Dependency for YAML file parsing. YAML is the prefered format for config files within varietas. --> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>1.18</version> </dependency> <!-- Test dependencies --> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.4.1</version> <scope>test</scope> </dependency> <!-- Embedded MongoDB for development only! Later change scope to test! --> <dependency> <groupId>de.flapdoodle.embed</groupId> <artifactId>de.flapdoodle.embed.mongo</artifactId> <version>1.50.5</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>com.jayway.restassured</groupId> <artifactId>rest-assured</artifactId> <version>2.9.0</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> </plugins> </build> </project>