dropwizard-version-bundle
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.isomorphism.dropwizard</groupId>
<artifactId>dropwizard-version-bundle</artifactId>
<version>0.1.0</version>
</dependency><?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<groupId>org.isomorphism.dropwizard</groupId>
<artifactId>dropwizard-version-bundle</artifactId>
<version>0.1.0</version>
<packaging>jar</packaging>
<name>dropwizard-version-bundle</name>
<description>Dropwizard bundle that easily exposes the version of your application.</description>
<scm>
<url>http://github.com/bbeck/dropwizard-version-bundle</url>
<connection>scm:git:git@github.com:bbeck/dropwizard-version-bundle.git</connection>
<developerConnection>scm:git:git@github.com:bbeck/dropwizard-version-bundle.git</developerConnection>
<tag>v0.1.0</tag>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<dropwizard.version>0.7.1</dropwizard.version>
<junit.version>4.12</junit.version>
</properties>
<build>
<plugins>
<!-- Release tags should be v<VERSION>. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- Dropwizard -->
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-core</artifactId>
<version>${dropwizard.version}</version>
</dependency>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-testing</artifactId>
<version>${dropwizard.version}</version>
<scope>test</scope>
</dependency>
<!-- JUnit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>