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>
<groupId>io.dropwizard.modules</groupId> <groupId>io.dropwizard.modules</groupId>
<artifactId>dropwizard-vavr</artifactId> <artifactId>dropwizard-vavr</artifactId>
<version>1.3.0-4</version> <version>2.0.0-1</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>Dropwizard Vavr Bundle</name> <name>Dropwizard Vavr Bundle</name>
<description>Addon bundle for Dropwizard to support Vavr</description> <description>Addon bundle for Dropwizard to support Vavr</description>
<url>https://github.com/dropwizard/dropwizard-vavr</url> <url>https://github.com/dropwizard/dropwizard-vavr</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-v avr.git</developerConnection> <developerConnection>scm:git:git@github.com:dropwizard/dropwizard-v avr.git</developerConnection>
<connection>scm:git:https://github.com/dropwizard/dropwizard-vavr.g it</connection> <connection>scm:git:https://github.com/dropwizard/dropwizard-vavr.g it</connection>
<url>https://github.com/dropwizard/dropwizard-vavr</url> <url>https://github.com/dropwizard/dropwizard-vavr</url>
<tag>dropwizard-vavr-1.3.0-4</tag> <tag>dropwizard-vavr-2.0.0-1</tag>
</scm> </scm>
<ciManagement> <ciManagement>
<system>Travis CI</system> <system>Travis CI</system>
<url>https://travis-ci.org/dropwizard/dropwizard-vavr</url> <url>https://travis-ci.org/dropwizard/dropwizard-vavr</url>
</ciManagement> </ciManagement>
<issueManagement> <issueManagement>
<system>GitHub Issues</system> <system>GitHub Issues</system>
<url>https://github.com/dropwizard/dropwizard-vavr/issues</url> <url>https://github.com/dropwizard/dropwizard-vavr/issues</url>
</issueManagement> </issueManagement>
skipping to change at line 67 skipping to change at line 67
<name>Jochen Schalanda</name> <name>Jochen Schalanda</name>
<email>jochen@schalanda.name</email> <email>jochen@schalanda.name</email>
</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>
<maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.target>1.8</maven.compiler.target>
<dropwizard.version>1.3.20</dropwizard.version> <dropwizard.version>2.0.2</dropwizard.version>
<vavr.version>0.10.3</vavr.version> <vavr.version>0.10.2</vavr.version>
</properties> </properties>
<dependencyManagement> <dependencyManagement>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>io.dropwizard</groupId> <groupId>io.dropwizard</groupId>
<artifactId>dropwizard-bom</artifactId> <artifactId>dropwizard-dependencies</artifactId>
<version>${dropwizard.version}</version> <version>${dropwizard.version}</version>
<type>pom</type> <type>pom</type>
<scope>import</scope> <scope>import</scope>
</dependency> </dependency>
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>io.dropwizard</groupId> <groupId>io.dropwizard</groupId>
<artifactId>dropwizard-core</artifactId> <artifactId>dropwizard-core</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>io.dropwizard</groupId> <groupId>io.dropwizard</groupId>
<artifactId>dropwizard-jdbi</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-jdbi3</artifactId> <artifactId>dropwizard-jdbi3</artifactId>
<optional>true</optional> <optional>true</optional>
</dependency> </dependency>
<dependency> <dependency>
<groupId>io.vavr</groupId> <groupId>io.vavr</groupId>
<artifactId>vavr-jackson</artifactId> <artifactId>vavr-jackson</artifactId>
<version>${vavr.version}</version> <version>${vavr.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.jdbi</groupId> <groupId>org.jdbi</groupId>
<artifactId>jdbi3-vavr</artifactId> <artifactId>jdbi3-vavr</artifactId>
<optional>true</optional> <optional>true</optional>
</dependency> </dependency>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit</artifactId> <artifactId>junit-jupiter</artifactId>
<version>4.12</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>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>io.dropwizard</groupId> <groupId>io.dropwizard</groupId>
<artifactId>dropwizard-client</artifactId> <artifactId>dropwizard-client</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.h2database</groupId> <groupId>com.h2database</groupId>
<artifactId>h2</artifactId> <artifactId>h2</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies> </dependencies>
<build> <build>
<pluginManagement> <pluginManagement>
<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.8.1</version> <version>3.8.1</version>
</plugin> </plugin>
 End of changes. 7 change blocks. 
19 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/