| 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> | ||||
| <groupId>io.dropwizard.modules</groupId> | <groupId>io.dropwizard.modules</groupId> | |||
| <artifactId>module-parent</artifactId> | ||||
| <version>2.1.3</version> | ||||
| </parent> | ||||
| <artifactId>dropwizard-flyway</artifactId> | <artifactId>dropwizard-flyway</artifactId> | |||
| <version>2.1.0-8</version> | <version>2.1.0-9</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> | ||||
| <licenses> | ||||
| <license> | ||||
| <name>Apache 2.0</name> | ||||
| <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||||
| <distribution>repo</distribution> | ||||
| </license> | ||||
| </licenses> | ||||
| <scm> | ||||
| <developerConnection>scm:git:git@github.com:dropwizard/dropwizard-f | ||||
| lyway.git</developerConnection> | ||||
| <connection>scm:git:https://github.com/dropwizard/dropwizard-flyway | ||||
| .git</connection> | ||||
| <url>https://github.com/dropwizard/dropwizard-flyway</url> | ||||
| <tag>dropwizard-flyway-2.1.0-8</tag> | ||||
| </scm> | ||||
| <ciManagement> | ||||
| <system>GitHub Actions</system> | ||||
| <url>https://github.com/dropwizard/dropwizard-flyway/actions</url> | ||||
| </ciManagement> | ||||
| <issueManagement> | ||||
| <system>GitHub Issues</system> | ||||
| <url>https://github.com/dropwizard/dropwizard-flyway/issues</url> | ||||
| </issueManagement> | ||||
| <distributionManagement> | <distributionManagement> | |||
| <snapshotRepository> | ||||
| <id>ossrh</id> | ||||
| <url>https://s01.oss.sonatype.org/content/repositories/snapshot | ||||
| s</url> | ||||
| </snapshotRepository> | ||||
| <repository> | ||||
| <id>ossrh</id> | ||||
| <url>https://s01.oss.sonatype.org/service/local/staging/deploy/ | ||||
| maven2/</url> | ||||
| </repository> | ||||
| <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> | |||
| </distributionManagement> | </distributionManagement> | |||
| <developers> | <developers> | |||
| <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> | |||
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||||
| <project.reporting.outputEncoding>UTF-8</project.reporting.outputEn | ||||
| coding> | ||||
| <maven.compiler.release>17</maven.compiler.release> | ||||
| <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.host.url>https://sonarcloud.io</sonar.host.url> | ||||
| <dropwizard.version>2.1.12</dropwizard.version> | <flyway.version>10.22.0</flyway.version> | |||
| <flyway.version>10.7.2</flyway.version> | ||||
| </properties> | </properties> | |||
| <dependencyManagement> | ||||
| <dependencies> | ||||
| <dependency> | ||||
| <groupId>io.dropwizard</groupId> | ||||
| <artifactId>dropwizard-dependencies</artifactId> | ||||
| <version>${dropwizard.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> | |||
| skipping to change at line 146 | skipping to change at line 95 | |||
| </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> | <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.2.224</version> | <version>2.3.232</version> | |||
| <scope>test</scope> | <scope>test</scope> | |||
| </dependency> | </dependency> | |||
| </dependencies> | </dependencies> | |||
| <build> | <scm> | |||
| <pluginManagement> | <tag>dropwizard-flyway-2.1.0-9</tag> | |||
| <plugins> | </scm> | |||
| <plugin> | ||||
| <groupId>org.apache.maven.plugins</groupId> | ||||
| <artifactId>maven-compiler-plugin</artifactId> | ||||
| <version>3.12.1</version> | ||||
| </plugin> | ||||
| <plugin> | ||||
| <groupId>org.apache.maven.plugins</groupId> | ||||
| <artifactId>maven-source-plugin</artifactId> | ||||
| <version>3.3.0</version> | ||||
| </plugin> | ||||
| <plugin> | ||||
| <groupId>org.apache.maven.plugins</groupId> | ||||
| <artifactId>maven-javadoc-plugin</artifactId> | ||||
| <version>3.6.3</version> | ||||
| </plugin> | ||||
| <plugin> | ||||
| <groupId>org.apache.maven.plugins</groupId> | ||||
| <artifactId>maven-site-plugin</artifactId> | ||||
| <version>3.12.1</version> | ||||
| </plugin> | ||||
| <plugin> | ||||
| <groupId>org.apache.maven.plugins</groupId> | ||||
| <artifactId>maven-clean-plugin</artifactId> | ||||
| <version>3.3.2</version> | ||||
| </plugin> | ||||
| <plugin> | ||||
| <groupId>org.apache.maven.plugins</groupId> | ||||
| <artifactId>maven-deploy-plugin</artifactId> | ||||
| <version>3.1.1</version> | ||||
| </plugin> | ||||
| <plugin> | ||||
| <groupId>org.apache.maven.plugins</groupId> | ||||
| <artifactId>maven-install-plugin</artifactId> | ||||
| <version>3.1.1</version> | ||||
| </plugin> | ||||
| <plugin> | ||||
| <groupId>org.apache.maven.plugins</groupId> | ||||
| <artifactId>maven-jar-plugin</artifactId> | ||||
| <version>3.3.0</version> | ||||
| </plugin> | ||||
| <plugin> | ||||
| <groupId>org.apache.maven.plugins</groupId> | ||||
| <artifactId>maven-resources-plugin</artifactId> | ||||
| <version>3.3.1</version> | ||||
| </plugin> | ||||
| <plugin> | ||||
| <groupId>org.apache.maven.plugins</groupId> | ||||
| <artifactId>maven-surefire-plugin</artifactId> | ||||
| <version>3.2.5</version> | ||||
| </plugin> | ||||
| <plugin> | ||||
| <groupId>org.apache.maven.plugins</groupId> | ||||
| <artifactId>maven-project-info-reports-plugin</artifact | ||||
| Id> | ||||
| <version>3.5.0</version> | ||||
| </plugin> | ||||
| <plugin> | ||||
| <groupId>org.apache.maven.plugins</groupId> | ||||
| <artifactId>maven-release-plugin</artifactId> | ||||
| <version>3.0.1</version> | ||||
| </plugin> | ||||
| <plugin> | ||||
| <groupId>org.apache.maven.plugins</groupId> | ||||
| <artifactId>maven-gpg-plugin</artifactId> | ||||
| <version>3.1.0</version> | ||||
| </plugin> | ||||
| <plugin> | ||||
| <groupId>com.github.github</groupId> | ||||
| <artifactId>site-maven-plugin</artifactId> | ||||
| <version>0.12</version> | ||||
| </plugin> | ||||
| <plugin> | ||||
| <groupId>org.jacoco</groupId> | ||||
| <artifactId>jacoco-maven-plugin</artifactId> | ||||
| <version>0.8.11</version> | ||||
| </plugin> | ||||
| <plugin> | ||||
| <groupId>org.eluder.coveralls</groupId> | ||||
| <artifactId>coveralls-maven-plugin</artifactId> | ||||
| <version>4.3.0</version> | ||||
| </plugin> | ||||
| <plugin> | ||||
| <groupId>org.sonatype.plugins</groupId> | ||||
| <artifactId>nexus-staging-maven-plugin</artifactId> | ||||
| <version>1.6.13</version> | ||||
| <extensions>true</extensions> | ||||
| </plugin> | ||||
| <plugin> | ||||
| <groupId>org.sonarsource.scanner.maven</groupId> | ||||
| <artifactId>sonar-maven-plugin</artifactId> | ||||
| <version>3.10.0.2594</version> | ||||
| </plugin> | ||||
| </plugins> | ||||
| </pluginManagement> | ||||
| <plugins> | ||||
| <plugin> | ||||
| <groupId>org.apache.maven.plugins</groupId> | ||||
| <artifactId>maven-release-plugin</artifactId> | ||||
| <configuration> | ||||
| <useReleaseProfile>false</useReleaseProfile> | ||||
| <releaseProfiles>release</releaseProfiles> | ||||
| <goals>deploy</goals> | ||||
| </configuration> | ||||
| </plugin> | ||||
| <plugin> | ||||
| <groupId>org.apache.maven.plugins</groupId> | ||||
| <artifactId>maven-site-plugin</artifactId> | ||||
| <configuration> | ||||
| <skipDeploy>true</skipDeploy> | ||||
| </configuration> | ||||
| </plugin> | ||||
| <plugin> | ||||
| <groupId>com.github.github</groupId> | ||||
| <artifactId>site-maven-plugin</artifactId> | ||||
| <configuration> | ||||
| <path>${project.version}</path> | ||||
| <message>Creating site for ${project.name} ${project.ve | ||||
| rsion}</message> | ||||
| <merge>true</merge> | ||||
| <noJekyll>true</noJekyll> | ||||
| </configuration> | ||||
| <executions> | ||||
| <execution> | ||||
| <goals> | ||||
| <goal>site</goal> | ||||
| </goals> | ||||
| <phase>site-deploy</phase> | ||||
| </execution> | ||||
| </executions> | ||||
| </plugin> | ||||
| <plugin> | ||||
| <groupId>org.jacoco</groupId> | ||||
| <artifactId>jacoco-maven-plugin</artifactId> | ||||
| <executions> | ||||
| <execution> | ||||
| <id>prepare-agent</id> | ||||
| <goals> | ||||
| <goal>prepare-agent</goal> | ||||
| </goals> | ||||
| </execution> | ||||
| <execution> | ||||
| <id>report</id> | ||||
| <goals> | ||||
| <goal>report</goal> | ||||
| </goals> | ||||
| </execution> | ||||
| </executions> | ||||
| </plugin> | ||||
| <plugin> | ||||
| <groupId>org.eluder.coveralls</groupId> | ||||
| <artifactId>coveralls-maven-plugin</artifactId> | ||||
| </plugin> | ||||
| </plugins> | ||||
| </build> | ||||
| <reporting> | ||||
| <plugins> | ||||
| <plugin> | ||||
| <groupId>org.apache.maven.plugins</groupId> | ||||
| <artifactId>maven-project-info-reports-plugin</artifactId> | ||||
| <configuration> | ||||
| <dependencyDetailsEnabled>false</dependencyDetailsEnabl | ||||
| ed> | ||||
| </configuration> | ||||
| <reportSets> | ||||
| <reportSet> | ||||
| <reports> | ||||
| <report>index</report> | ||||
| <report>dependency-info</report> | ||||
| <report>dependencies</report> | ||||
| <report>issue-management</report> | ||||
| <report>scm</report> | ||||
| <report>licenses</report> | ||||
| <report>team</report> | ||||
| </reports> | ||||
| </reportSet> | ||||
| </reportSets> | ||||
| </plugin> | ||||
| <plugin> | ||||
| <groupId>org.apache.maven.plugins</groupId> | ||||
| <artifactId>maven-javadoc-plugin</artifactId> | ||||
| <configuration> | ||||
| <show>public</show> | ||||
| <quiet>true</quiet> | ||||
| </configuration> | ||||
| <reportSets> | ||||
| <reportSet> | ||||
| <id>html</id> | ||||
| <reports> | ||||
| <report>javadoc</report> | ||||
| </reports> | ||||
| </reportSet> | ||||
| </reportSets> | ||||
| </plugin> | ||||
| </plugins> | ||||
| </reporting> | ||||
| <profiles> | ||||
| <profile> | ||||
| <id>release</id> | ||||
| <build> | ||||
| <plugins> | ||||
| <plugin> | ||||
| <groupId>org.apache.maven.plugins</groupId> | ||||
| <artifactId>maven-source-plugin</artifactId> | ||||
| <executions> | ||||
| <execution> | ||||
| <id>attach-sources</id> | ||||
| <goals> | ||||
| <goal>jar</goal> | ||||
| </goals> | ||||
| </execution> | ||||
| </executions> | ||||
| </plugin> | ||||
| <plugin> | ||||
| <groupId>org.apache.maven.plugins</groupId> | ||||
| <artifactId>maven-javadoc-plugin</artifactId> | ||||
| <configuration> | ||||
| <quiet>true</quiet> | ||||
| </configuration> | ||||
| <executions> | ||||
| <execution> | ||||
| <id>attach-javadocs</id> | ||||
| <goals> | ||||
| <goal>jar</goal> | ||||
| </goals> | ||||
| </execution> | ||||
| </executions> | ||||
| </plugin> | ||||
| <plugin> | ||||
| <groupId>org.apache.maven.plugins</groupId> | ||||
| <artifactId>maven-gpg-plugin</artifactId> | ||||
| <executions> | ||||
| <execution> | ||||
| <id>sign-artifacts</id> | ||||
| <phase>verify</phase> | ||||
| <goals> | ||||
| <goal>sign</goal> | ||||
| </goals> | ||||
| <configuration> | ||||
| <gpgArguments> | ||||
| <arg>--pinentry-mode</arg> | ||||
| <arg>loopback</arg> | ||||
| </gpgArguments> | ||||
| </configuration> | ||||
| </execution> | ||||
| </executions> | ||||
| </plugin> | ||||
| <plugin> | ||||
| <groupId>org.sonatype.plugins</groupId> | ||||
| <artifactId>nexus-staging-maven-plugin</artifactId> | ||||
| <configuration> | ||||
| <serverId>ossrh</serverId> | ||||
| <nexusUrl>https://s01.oss.sonatype.org/</nexusU | ||||
| rl> | ||||
| <autoReleaseAfterClose>true</autoReleaseAfterCl | ||||
| ose> | ||||
| </configuration> | ||||
| </plugin> | ||||
| </plugins> | ||||
| </build> | ||||
| </profile> | ||||
| </profiles> | ||||
| </project> | </project> | |||
| End of changes. 10 change blocks. | ||||
| 329 lines changed or deleted | 11 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/  | ||||