Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Done
-
Affects Version/s: None
-
Fix Version/s: 10.0.0 Major Release
-
Labels:None
-
Story Points:0.5
-
Epic Link:
-
Sprint:Spring 1, Spring 2
Description
When building main-JDK21 observed this warning:
[WARNING] Parameter 'ignoreChecksumFailure' is unknown for plugin 'maven-dependency-plugin:3.5.0:copy (copy)'
Investigate and correct the problem that is causing the warning.
Docker file used to build the container was: https://bitbucket.org/lorainelab/integrated-genome-browser-docker/raw/d26649c086c8c2cc252e8a18b6e2ca3a74413f0b/Dockerfile
The version of IGB built was: a0860834e (HEAD -> main-JDK21, origin/main-JDK21) removing mac specific code for the right aligned tabs to ensure vertical override is applied
Attachments
Issue Links
- relates to
-
IGBF-3525 Investigate build problem: SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder"
-
- Closed
-
-
IGBF-3523 Investigate build problem: POM and checksum for com.jidesoft:jide-ultimate-jakarta:jar:3.5.15 is missing, no dependency information available
-
- Closed
-
-
IGBF-3524 Investigate build problem: Bundle org.lorainelab.igb:flatlaf:bundle:10.0.0 : Classes found in the wrong directory
-
- Closed
-
-
IGBF-3521 Investigate build problem: effective model for org.lorainelab.igb:affymetrix-common:bundle:10.0.0
-
- Closed
-
-
IGBF-3508 Create Install4J v10 Docker image for JDK21
-
- Closed
-
-
IGBF-3516 Investigate build problem: repo1/javax/jlfgr/jlfgr/1.0/jlfgr-1.0.jar main-JDK21 warning
-
- Closed
-
"ignoreChecksumFailure" is a configuration tag recently added to the project pom for maven-dependency-plugin by David Norris during the JDK 17 migration (see commit ) , however, the plugin cannot identify the tag thus causing this warning. Observations:
<configuration> <ignoreChecksumFailure>true</ignoreChecksumFailure> </configuration>
Removing the tag seems to be the best course of action here.