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-flyway</artifactId> <artifactId>dropwizard-flyway</artifactId>
<version>4.0.0-2</version> <version>4.0.0-3</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>Dropwizard Flyway Bundle</name> <name>Dropwizard Flyway Bundle</name>
<description>Addon bundle for Dropwizard to support Flyway for database migrations</description> <description>Addon bundle for Dropwizard to support Flyway for database migrations</description>
<url>https://github.com/dropwizard/dropwizard-flyway</url> <url>https://github.com/dropwizard/dropwizard-flyway</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-f lyway.git</developerConnection> <developerConnection>scm:git:git@github.com:dropwizard/dropwizard-f lyway.git</developerConnection>
<connection>scm:git:https://github.com/dropwizard/dropwizard-flyway .git</connection> <connection>scm:git:https://github.com/dropwizard/dropwizard-flyway .git</connection>
<url>https://github.com/dropwizard/dropwizard-flyway</url> <url>https://github.com/dropwizard/dropwizard-flyway</url>
<tag>dropwizard-flyway-4.0.0-2</tag> <tag>dropwizard-flyway-4.0.0-3</tag>
</scm> </scm>
<ciManagement> <ciManagement>
<system>Travis CI</system> <system>Travis CI</system>
<url>https://travis-ci.org/dropwizard/dropwizard-flyway</url> <url>https://travis-ci.org/dropwizard/dropwizard-flyway</url>
</ciManagement> </ciManagement>
<issueManagement> <issueManagement>
<system>GitHub Issues</system> <system>GitHub Issues</system>
<url>https://github.com/dropwizard/dropwizard-flyway/issues</url> <url>https://github.com/dropwizard/dropwizard-flyway/issues</url>
skipping to change at line 72 skipping to change at line 72
<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.release>11</maven.compiler.release> <maven.compiler.release>11</maven.compiler.release>
<maven.compiler.parameters>true</maven.compiler.parameters> <maven.compiler.parameters>true</maven.compiler.parameters>
<sonar.projectKey>dropwizard_dropwizard-flyway</sonar.projectKey> <sonar.projectKey>dropwizard_dropwizard-flyway</sonar.projectKey>
<sonar.organization>dropwizard</sonar.organization> <sonar.organization>dropwizard</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url> <sonar.host.url>https://sonarcloud.io</sonar.host.url>
<dropwizard.version>4.0.0</dropwizard.version> <dropwizard.version>4.0.1</dropwizard.version>
<flyway.version>9.19.4</flyway.version> <flyway.version>9.20.1</flyway.version>
</properties> </properties>
<dependencyManagement> <dependencyManagement>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>io.dropwizard</groupId> <groupId>io.dropwizard</groupId>
<artifactId>dropwizard-dependencies</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>
skipping to change at line 107 skipping to change at line 107
<dependency> <dependency>
<groupId>io.dropwizard</groupId> <groupId>io.dropwizard</groupId>
<artifactId>dropwizard-util</artifactId> <artifactId>dropwizard-util</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.flywaydb</groupId> <groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId> <artifactId>flyway-core</artifactId>
<version>${flyway.version}</version> <version>${flyway.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-database-oracle</artifactId>
<version>${flyway.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.checkerframework</groupId> <groupId>org.checkerframework</groupId>
<artifactId>checker-qual</artifactId> <artifactId>checker-qual</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>net.sourceforge.argparse4j</groupId> <groupId>net.sourceforge.argparse4j</groupId>
<artifactId>argparse4j</artifactId> <artifactId>argparse4j</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.slf4j</groupId> <groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId> <artifactId>slf4j-api</artifactId>
skipping to change at line 137 skipping to change at line 143
<dependency> <dependency>
<groupId>org.mockito</groupId> <groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId> <artifactId>mockito-core</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.mockito</groupId> <groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId> <artifactId>mockito-junit-jupiter</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.2.220</version>
<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.11.0</version> <version>3.11.0</version>
</plugin> </plugin>
skipping to change at line 165 skipping to change at line 177
<version>3.5.0</version> <version>3.5.0</version>
</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.12.1</version> <version>3.12.1</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId> <artifactId>maven-clean-plugin</artifactId>
<version>3.2.0</version> <version>3.3.1</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId> <artifactId>maven-deploy-plugin</artifactId>
<version>3.1.1</version> <version>3.1.1</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId> <artifactId>maven-install-plugin</artifactId>
<version>3.1.1</version> <version>3.1.1</version>
 End of changes. 6 change blocks. 
5 lines changed or deleted 17 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/