-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #125 from wireapp/chore/cleanup-classpath
chore: cleanup classpath dependencies and finalize migration to jakarta
- Loading branch information
Showing
10 changed files
with
64 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
|
||
<groupId>com.wire</groupId> | ||
<artifactId>lithium</artifactId> | ||
<version>3.6.2</version> | ||
<version>3.6.3</version> | ||
<name>Lithium</name> | ||
<description>Wire Bots SDK written in Java</description> | ||
<url>https://wire.com/</url> | ||
|
@@ -34,6 +34,13 @@ | |
<organizationUrl>https://wire.com</organizationUrl> | ||
<timezone>UTC+01:00</timezone> | ||
</developer> | ||
<developer> | ||
<name>Yamil Medina</name> | ||
<email>[email protected]</email> | ||
<organization>Wire Swiss GmbH</organization> | ||
<organizationUrl>https://wire.com</organizationUrl> | ||
<timezone>UTC+01:00</timezone> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
|
@@ -59,7 +66,8 @@ | |
<maven.test.skip>true</maven.test.skip> | ||
<!-- BEFORE UPGRADING! VERIFY RUNTIME PG VERSION COMPATIBILITY --> | ||
<flyway.version>7.15.0</flyway.version> | ||
|
||
<dropwizard.version>4.0.0</dropwizard.version> | ||
<jakarta.version>2.1.1</jakarta.version> | ||
</properties> | ||
|
||
<repositories> | ||
|
@@ -70,6 +78,18 @@ | |
</repository> | ||
</repositories> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>io.dropwizard</groupId> | ||
<artifactId>dropwizard-bom</artifactId> | ||
<version>${dropwizard.version}</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.wire</groupId> | ||
|
@@ -89,38 +109,57 @@ | |
<dependency> | ||
<groupId>io.dropwizard</groupId> | ||
<artifactId>dropwizard-core</artifactId> | ||
<version>4.0.0</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.dropwizard</groupId> | ||
<artifactId>dropwizard-jdbi3</artifactId> | ||
<version>4.0.0</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.dropwizard</groupId> | ||
<artifactId>dropwizard-client</artifactId> | ||
<version>4.0.2</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.github.smoketurner</groupId> | ||
<artifactId>dropwizard-swagger</artifactId> | ||
<version>72e8441e4a</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.postgresql</groupId> | ||
<artifactId>postgresql</artifactId> | ||
<version>42.6.0</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.flywaydb</groupId> | ||
<artifactId>flyway-core</artifactId> | ||
<version>${flyway.version}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>jakarta.annotation</groupId> | ||
<artifactId>jakarta.annotation-api</artifactId> | ||
<version>${jakarta.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>jakarta.validation</groupId> | ||
<artifactId>jakarta.validation-api</artifactId> | ||
<version>3.0.2</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.smoketurner</groupId> | ||
<artifactId>dropwizard-swagger</artifactId> | ||
<version>4.0.0-1</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.swagger</groupId> | ||
<artifactId>swagger-annotations</artifactId> | ||
<version>1.6.13</version> | ||
</dependency> | ||
|
||
|
||
<dependency> | ||
<groupId>io.dropwizard</groupId> | ||
<artifactId>dropwizard-testing</artifactId> | ||
<version>4.0.2</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/main/java/com/wire/lithium/server/monitoring/MDCUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/main/java/com/wire/lithium/server/monitoring/RequestMdcFactoryFilter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters