Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions dropwizard/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,8 @@
</goals>
<configuration>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>com.baeldung.dropwizard.introduction.IntroductionApplication</mainClass>
</transformer>
</transformers>
Expand All @@ -63,7 +61,7 @@
</build>

<properties>
<dropwizard.version>2.0.0</dropwizard.version>
<dropwizard.version>4.0.12</dropwizard.version>

Copilot AI Jan 27, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR upgrades Dropwizard from version 2.0.0 to 4.0.12, which represents a major version jump that skips version 3.x entirely. Major version upgrades typically introduce breaking changes and API modifications.

Before merging, you should:

  1. Review the Dropwizard 3.x and 4.x migration guides and release notes to identify breaking changes
  2. Verify that all Dropwizard APIs used in the codebase (Application, Configuration, ResourceConfigurationSourceProvider, Bootstrap, Environment, etc.) remain compatible
  3. Run comprehensive integration and unit tests to ensure the application still functions correctly
  4. Test the application's startup, health checks, and REST endpoints

The Dropwizard module uses core framework APIs that may have changed signature or behavior between versions.

Copilot uses AI. Check for mistakes.
</properties>

</project>
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
<ignore/>
</action>
</pluginExecution>
<pluginExecution>
Expand All @@ -281,7 +281,7 @@
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
<ignore/>
</action>
</pluginExecution>
</pluginExecutions>
Expand Down Expand Up @@ -1445,7 +1445,7 @@

<!-- logging -->
<org.slf4j.version>1.7.32</org.slf4j.version>
<logback.version>1.2.6</logback.version>
<logback.version>1.5.25</logback.version>

Copilot AI Jan 27, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The logback upgrade from 1.2.6 to 1.5.25 appears to be a minor version upgrade within the 1.x series. However, verify that this version is compatible with SLF4J 1.7.32 which is currently specified in the parent POM. Logback 1.5.x may require or recommend SLF4J 2.x for optimal compatibility. Check the Logback 1.5.25 documentation to confirm SLF4J version compatibility.

Copilot uses AI. Check for mistakes.

<!-- plugins -->
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
Expand Down