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</groupId> | <groupId>io.dropwizard</groupId> | |||
<artifactId>dropwizard-parent</artifactId> | <artifactId>dropwizard-parent</artifactId> | |||
<version>4.0.13</version> | <version>4.0.14</version> | |||
<relativePath>../dropwizard-parent</relativePath> | <relativePath>../dropwizard-parent</relativePath> | |||
</parent> | </parent> | |||
<artifactId>dropwizard-migrations</artifactId> | <artifactId>dropwizard-migrations</artifactId> | |||
<name>Dropwizard Migrations</name> | <name>Dropwizard Migrations</name> | |||
<properties> | <properties> | |||
<module.name>io.dropwizard.migrations</module.name> | <module.name>io.dropwizard.migrations</module.name> | |||
</properties> | </properties> | |||
skipping to change at line 48 | skipping to change at line 48 | |||
<artifactId>liquibase-core</artifactId> | <artifactId>liquibase-core</artifactId> | |||
<exclusions> | <exclusions> | |||
<exclusion> | <exclusion> | |||
<groupId>javax.xml.bind</groupId> | <groupId>javax.xml.bind</groupId> | |||
<artifactId>jaxb-api</artifactId> | <artifactId>jaxb-api</artifactId> | |||
</exclusion> | </exclusion> | |||
<exclusion> | <exclusion> | |||
<groupId>javax.activation</groupId> | <groupId>javax.activation</groupId> | |||
<artifactId>javax.activation-api</artifactId> | <artifactId>javax.activation-api</artifactId> | |||
</exclusion> | </exclusion> | |||
<exclusion> | ||||
<groupId>org.apache.commons</groupId> | ||||
<artifactId>commons-collections4</artifactId> | ||||
</exclusion> | ||||
</exclusions> | </exclusions> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>com.mattbertolini</groupId> | <groupId>com.mattbertolini</groupId> | |||
<artifactId>liquibase-slf4j</artifactId> | <artifactId>liquibase-slf4j</artifactId> | |||
<scope>runtime</scope> | <scope>runtime</scope> | |||
</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.apache.commons</groupId> | ||||
<artifactId>commons-collections4</artifactId> | ||||
</dependency> | ||||
<dependency> | ||||
<groupId>org.slf4j</groupId> | <groupId>org.slf4j</groupId> | |||
<artifactId>slf4j-api</artifactId> | <artifactId>slf4j-api</artifactId> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>jakarta.xml.bind</groupId> | <groupId>jakarta.xml.bind</groupId> | |||
<artifactId>jakarta.xml.bind-api</artifactId> | <artifactId>jakarta.xml.bind-api</artifactId> | |||
<scope>runtime</scope> | <scope>runtime</scope> | |||
</dependency> | </dependency> | |||
skipping to change at line 110 | skipping to change at line 118 | |||
<dependency> | <dependency> | |||
<groupId>org.apache.tomcat</groupId> | <groupId>org.apache.tomcat</groupId> | |||
<artifactId>tomcat-jdbc</artifactId> | <artifactId>tomcat-jdbc</artifactId> | |||
<scope>test</scope> | <scope>test</scope> | |||
</dependency> | </dependency> | |||
</dependencies> | </dependencies> | |||
<build> | <build> | |||
<plugins> | <plugins> | |||
<plugin> | <plugin> | |||
<groupId>org.apache.maven.plugins</groupId> | ||||
<artifactId>maven-dependency-plugin</artifactId> | ||||
<configuration> | ||||
<ignoredUnusedDeclaredDependencies> | ||||
<ignoredUnusedDeclaredDependency> | ||||
org.apache.commons:commons-collections4 | ||||
</ignoredUnusedDeclaredDependency> | ||||
</ignoredUnusedDeclaredDependencies> | ||||
</configuration> | ||||
</plugin> | ||||
<plugin> | ||||
<groupId>org.codehaus.mojo</groupId> | <groupId>org.codehaus.mojo</groupId> | |||
<artifactId>exec-maven-plugin</artifactId> | <artifactId>exec-maven-plugin</artifactId> | |||
<configuration> | <configuration> | |||
<includePluginDependencies>true</includePluginDependenc ies> | <includePluginDependencies>true</includePluginDependenc ies> | |||
<mainClass>org.h2.tools.RunScript</mainClass> | <mainClass>org.h2.tools.RunScript</mainClass> | |||
<arguments> | <arguments> | |||
<argument>-user</argument> | <argument>-user</argument> | |||
<argument>sa</argument> | <argument>sa</argument> | |||
<argument>-url</argument> | <argument>-url</argument> | |||
<argument>jdbc:h2:file:${project.basedir}/src/test/ resources/test-db</argument> | <argument>jdbc:h2:file:${project.basedir}/src/test/ resources/test-db</argument> | |||
End of changes. 4 change blocks. | ||||
1 lines changed or deleted | 20 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/ |