So that dependencies are downloaded for offline running the static.[TOOL_NAME]/Dockerfile files should use the go-offline-maven-plugin with -P option:
RUN mvn -B de.qaware.maven:go-offline-maven-plugin:1.2.8:resolve-dependencies -P[TOOL_NAME]
Previously the profile wasn't specified so not all runtime dependencies were being downloaded and some were manually downloaded using maven-dependency-plugin and are no longer required.
So that dependencies are downloaded for offline running the
static.[TOOL_NAME]/Dockerfile
files should use the go-offline-maven-plugin with -P option:Previously the profile wasn't specified so not all runtime dependencies were being downloaded and some were manually downloaded using maven-dependency-plugin and are no longer required.
Apply to -