Update dropwizard version in mon-dropwizard

This commit is contained in:
Jonathan Halterman 2014-05-01 16:13:15 -07:00
parent 7d4f39142b
commit 4a29907897
1 changed files with 67 additions and 68 deletions

View File

@ -1,73 +1,72 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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">
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>
<modelVersion>4.0.0</modelVersion> <parent>
<parent> <groupId>com.hpcloud</groupId>
<groupId>com.hpcloud</groupId> <artifactId>mon-common</artifactId>
<artifactId>mon-common</artifactId> <version>${computedVersion}</version>
<version>${computedVersion}</version> </parent>
</parent> <artifactId>mon-dropwizard</artifactId>
<artifactId>mon-dropwizard</artifactId> <packaging>jar</packaging>
<packaging>jar</packaging>
<properties> <properties>
<dropwizard.version>0.7.0-rc1</dropwizard.version> <dropwizard.version>0.7.0</dropwizard.version>
</properties> </properties>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>com.hpcloud</groupId> <groupId>com.hpcloud</groupId>
<artifactId>mon-util</artifactId> <artifactId>mon-util</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>io.dropwizard</groupId> <groupId>io.dropwizard</groupId>
<artifactId>dropwizard-core</artifactId> <artifactId>dropwizard-core</artifactId>
<version>${dropwizard.version}</version> <version>${dropwizard.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>io.dropwizard</groupId> <groupId>io.dropwizard</groupId>
<artifactId>dropwizard-db</artifactId> <artifactId>dropwizard-db</artifactId>
<version>${dropwizard.version}</version> <version>${dropwizard.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>io.dropwizard</groupId> <groupId>io.dropwizard</groupId>
<artifactId>dropwizard-jdbi</artifactId> <artifactId>dropwizard-jdbi</artifactId>
<version>${dropwizard.version}</version> <version>${dropwizard.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<!-- Test dependencies --> <!-- Test dependencies -->
<dependency> <dependency>
<groupId>com.hpcloud</groupId> <groupId>com.hpcloud</groupId>
<artifactId>mon-testing</artifactId> <artifactId>mon-testing</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>io.dropwizard</groupId> <groupId>io.dropwizard</groupId>
<artifactId>dropwizard-testing</artifactId> <artifactId>dropwizard-testing</artifactId>
<version>${dropwizard.version}</version> <version>${dropwizard.version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId> <artifactId>maven-jar-plugin</artifactId>
<version>2.4</version> <version>2.4</version>
<executions> <executions>
<execution> <execution>
<goals> <goals>
<goal>test-jar</goal> <goal>test-jar</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>