Skip to content

Commit

Permalink
Upgrading to dw 2.0.20
Browse files Browse the repository at this point in the history
  • Loading branch information
mtakaki committed Mar 24, 2021
1 parent db961ba commit 09a3ed2
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 14 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -32,6 +32,7 @@ These are the supported versions of dropwizard:
| 2.0.1 | 2.0.1 | 3.4.2 |
| 2.0.2 | 2.0.2 | 3.4.2 |
| 2.0.10 | 2.0.10 | 3.4.5 |
| 2.0.20 | 2.0.20 | 4.0.3 |

## Maven

Expand Down
30 changes: 16 additions & 14 deletions pom.xml
@@ -1,9 +1,11 @@
<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/POM/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/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.github.mtakaki</groupId>
<artifactId>dropwizard-hikaricp</artifactId>
<version>2.0.11-SNAPSHOT</version>
<version>2.0.20-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Dropwizard HikariCP integration</name>
Expand All @@ -29,8 +31,8 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<dropwizard.version>2.0.10</dropwizard.version>
<hikaricp.version>3.4.5</hikaricp.version>
<dropwizard.version>2.0.20</dropwizard.version>
<hikaricp.version>4.0.3</hikaricp.version>
<!-- Flaky test setting, re-run more 2 times in case of a failure -->
<surefire.rerunFailingTestsCount>2</surefire.rerunFailingTestsCount>
<maven.compiler.source>1.8</maven.compiler.source>
Expand All @@ -41,7 +43,7 @@
<connection>scm:git:https://github.com/mtakaki/dropwizard-hikaricp.git</connection>
<developerConnection>scm:git:git@github.com:mtakaki/dropwizard-hikaricp.git</developerConnection>
<url>https://github.com/mtakaki/dropwizard-hikaricp</url>
<tag>2.0.2</tag>
<tag>2.0.20</tag>
</scm>

<distributionManagement>
Expand Down Expand Up @@ -74,7 +76,7 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.12</version>
<version>1.18.18</version>
<scope>provided</scope>
</dependency>

Expand All @@ -83,21 +85,21 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.7.0-M1</version>
<version>5.8.0-M1</version>
<scope>test</scope>
</dependency>
<!-- AssertJ to have proper assertions -->
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.16.1</version>
<version>3.19.0</version>
<scope>test</scope>
</dependency>
<!-- In memory database -->
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>2.5.0</version>
<version>2.5.1</version>
<scope>test</scope>
</dependency>
<!-- Dropwizard client for connecting to the test service -->
Expand Down Expand Up @@ -141,7 +143,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.5</version>
<version>0.8.6</version>
<executions>
<execution>
<id>prepare-agent</id>
Expand Down Expand Up @@ -204,7 +206,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.0</version>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -217,7 +219,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
<version>3.2.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand All @@ -237,7 +239,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.0</version>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -250,7 +252,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
<version>3.2.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down

0 comments on commit 09a3ed2

Please sign in to comment.