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>
<parent> <parent>
<groupId>io.dropwizard.modules</groupId> <groupId>io.dropwizard.modules</groupId>
<artifactId>module-parent</artifactId> <artifactId>module-parent</artifactId>
<version>4.0.3</version> <version>4.0.5.1</version>
</parent> </parent>
<artifactId>dropwizard-flyway</artifactId> <artifactId>dropwizard-flyway</artifactId>
<version>4.0.1-2</version> <version>4.0.2-1</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>
<distributionManagement> <distributionManagement>
<site> <site>
<id>dropwizard-flyway</id> <id>dropwizard-flyway</id>
<url>http://dropwizard.github.io/dropwizard-flyway/${project.ve rsion}</url> <url>http://dropwizard.github.io/dropwizard-flyway/${project.ve rsion}</url>
</site> </site>
skipping to change at line 34 skipping to change at line 34
<developer> <developer>
<id>j.schalanda</id> <id>j.schalanda</id>
<name>Jochen Schalanda</name> <name>Jochen Schalanda</name>
<email>jochen@schalanda.name</email> <email>jochen@schalanda.name</email>
</developer> </developer>
</developers> </developers>
<properties> <properties>
<sonar.projectKey>dropwizard_dropwizard-flyway</sonar.projectKey> <sonar.projectKey>dropwizard_dropwizard-flyway</sonar.projectKey>
<flyway.version>11.1.0</flyway.version> <flyway.version>11.17.1</flyway.version>
</properties> </properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.dropwizard.flywaydb</groupId>
<artifactId>flyway-bom</artifactId>
<version>${flyway.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</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-db</artifactId> <artifactId>dropwizard-db</artifactId>
</dependency> </dependency>
<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>
</dependency> </dependency>
<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>
skipping to change at line 89 skipping to change at line 100
<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> <dependency>
<groupId>org.flywaydb</groupId> <groupId>org.flywaydb</groupId>
<artifactId>flyway-database-postgresql</artifactId> <artifactId>flyway-database-postgresql</artifactId>
<version>${flyway.version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.h2database</groupId> <groupId>com.h2database</groupId>
<artifactId>h2</artifactId> <artifactId>h2</artifactId>
<version>2.3.232</version> <version>2.4.240</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<scm> <scm>
<tag>dropwizard-flyway-4.0.1-2</tag> <tag>dropwizard-flyway-4.0.2-1</tag>
</scm> </scm>
</project> </project>
 End of changes. 8 change blocks. 
7 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/