Open johanblumenberg opened 2 months ago
@johanblumenberg : Thanks for reporting, Do you know if there are any breaking changes in 3.4.0 ?
@johanblumenberg : Thanks for reporting, Do you know if there are any breaking changes in 3.4.0 ?
There are some API changes that causes compile errors in docker-maven-plugin
, but I did not dig any deeper into it.
Description
There are newer versions of
maven-assembly-plugin
available.The currently used version is
maven-assembly-plugin:3.1.0
, which has a compile dependency tomaven-core:3.0
, which means thatmaven-core:3.0
will be pulled down when you run the build.maven-assembly-plugin:3.4.0
has changed this to be a provided dependency.Updating the dependency to
maven-assembly-plugin
to version3.4.0
or higher would avoid downloadingmaven-core:3.0
when building.Info
mvn -v
) : 3.8.4