pom.xml   pom.xml 
<?xml version="1.0" encoding="UTF-8"?> <?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/P OM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <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/P OM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<prerequisites> <prerequisites>
<maven>3.0.1</maven> <maven>3.0.1</maven>
</prerequisites> </prerequisites>
<groupId>io.dropwizard.modules</groupId> <groupId>io.dropwizard.modules</groupId>
<artifactId>dropwizard-protobuf</artifactId> <artifactId>dropwizard-protobuf</artifactId>
<version>0.9.1-1</version> <version>0.9.2-1</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>Dropwizard Protocol Buffers Support</name> <name>Dropwizard Protocol Buffers Support</name>
<description>Support for reading and writing Google Protocol Buffer obj ects</description> <description>Support for reading and writing Google Protocol Buffer obj ects</description>
<url>https://github.com/dropwizard/dropwizard-protobuf</url> <url>https://github.com/dropwizard/dropwizard-protobuf</url>
<licenses> <licenses>
<license> <license>
<name>Apache 2.0</name> <name>Apache 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution> <distribution>repo</distribution>
</license> </license>
</licenses> </licenses>
<scm> <scm>
<developerConnection>scm:git:git@github.com:dropwizard/dropwizard-p rotobuf.git</developerConnection> <developerConnection>scm:git:git@github.com:dropwizard/dropwizard-p rotobuf.git</developerConnection>
<connection>scm:git:https://github.com/dropwizard/dropwizard-protob uf.git</connection> <connection>scm:git:https://github.com/dropwizard/dropwizard-protob uf.git</connection>
<url>https://github.com/dropwizard/dropwizard-protobuf</url> <url>https://github.com/dropwizard/dropwizard-protobuf</url>
<tag>v0.9.1-1</tag> <tag>v0.9.2-1</tag>
</scm> </scm>
<ciManagement> <ciManagement>
<system>Travis CI</system> <system>Travis CI</system>
<url>https://travis-ci.org/dropwizard/dropwizard-protobuf</url> <url>https://travis-ci.org/dropwizard/dropwizard-protobuf</url>
</ciManagement> </ciManagement>
<issueManagement> <issueManagement>
<system>GitHub Issues</system> <system>GitHub Issues</system>
<url>https://github.com/dropwizard/dropwizard-protobuf/issues</url> <url>https://github.com/dropwizard/dropwizard-protobuf/issues</url>
skipping to change at line 85 skipping to change at line 85
<id>jplock</id> <id>jplock</id>
<name>Justin Plock</name> <name>Justin Plock</name>
<email>justin@plock.net</email> <email>justin@plock.net</email>
<timezone>America/New_York</timezone> <timezone>America/New_York</timezone>
</developer> </developer>
</developers> </developers>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEn coding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEn coding>
<dropwizard.version>0.9.1</dropwizard.version> <dropwizard.version>0.9.2</dropwizard.version>
<protobuf.version>2.6.1</protobuf.version> <protobuf.version>2.6.1</protobuf.version>
</properties> </properties>
<dependencyManagement> <dependencyManagement>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>io.dropwizard</groupId> <groupId>io.dropwizard</groupId>
<artifactId>dropwizard-bom</artifactId> <artifactId>dropwizard-bom</artifactId>
<version>${dropwizard.version}</version> <version>${dropwizard.version}</version>
<type>pom</type> <type>pom</type>
skipping to change at line 166 skipping to change at line 166
</plugins> </plugins>
</build> </build>
</profile> </profile>
</profiles> </profiles>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version> <version>3.5</version>
<configuration> <configuration>
<source>1.7</source> <source>1.7</source>
<target>1.7</target> <target>1.7</target>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId> <artifactId>maven-source-plugin</artifactId>
<version>2.4</version> <version>2.4</version>
<executions> <executions>
skipping to change at line 210 skipping to change at line 210
</executions> </executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId> <artifactId>maven-site-plugin</artifactId>
<version>3.4</version> <version>3.4</version>
<configuration> <configuration>
<skipDeploy>true</skipDeploy> <skipDeploy>true</skipDeploy>
</configuration> </configuration>
</plugin> </plugin>
<!-- <plugin> <plugin>
<groupId>com.github.github</groupId> <groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId> <artifactId>site-maven-plugin</artifactId>
<version>0.12</version> <version>0.12</version>
<configuration> <configuration>
<path>${project.version}</path> <path>${project.version}</path>
<message>Creating site for ${project.name} ${project.ve rsion}</message> <message>Creating site for ${project.name} ${project.ve rsion}</message>
<merge>true</merge> <merge>true</merge>
<noJekyll>true</noJekyll> <noJekyll>true</noJekyll>
</configuration> </configuration>
<executions> <executions>
<execution> <execution>
<goals> <goals>
<goal>site</goal> <goal>site</goal>
</goals> </goals>
<phase>site-deploy</phase> <phase>site-deploy</phase>
</execution> </execution>
</executions> </executions>
</plugin> --> </plugin>
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId> <artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version> <version>2.7</version>
<configuration> <configuration>
<formats> <formats>
<format>xml</format> <format>xml</format>
</formats> </formats>
<aggregate>true</aggregate> <aggregate>true</aggregate>
</configuration> </configuration>
<dependencies>
<dependency>
<groupId>net.sourceforge.cobertura</groupId>
<artifactId>cobertura</artifactId>
<version>2.1.1</version>
</dependency>
</dependencies>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.eluder.coveralls</groupId> <groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId> <artifactId>coveralls-maven-plugin</artifactId>
<version>4.0.0</version> <version>4.1.0</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId> <artifactId>maven-enforcer-plugin</artifactId>
<version>1.4.1</version> <version>1.4.1</version>
<executions> <executions>
<execution> <execution>
<id>enforce</id> <id>enforce</id>
<configuration> <configuration>
<rules> <rules>
skipping to change at line 289 skipping to change at line 282
<preparationGoals>clean test</preparationGoals> <preparationGoals>clean test</preparationGoals>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<reporting> <reporting>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId> <artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.8</version> <version>2.8.1</version>
<configuration> <configuration>
<dependencyDetailsEnabled>false</dependencyDetailsEnabl ed> <dependencyDetailsEnabled>false</dependencyDetailsEnabl ed>
<dependencyLocationsEnabled>false</dependencyLocationsE nabled> <dependencyLocationsEnabled>false</dependencyLocationsE nabled>
</configuration> </configuration>
<reportSets> <reportSets>
<reportSet> <reportSet>
<reports> <reports>
<report>index</report> <report>index</report>
<report>summary</report> <report>summary</report>
<report>dependency-info</report> <report>dependency-info</report>
 End of changes. 9 change blocks. 
15 lines changed or deleted 8 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/