My builds broke when I moved to Gradle 5 becasue Gradle v5.2 bundles with Groovy v2.5.4. These projects use the dynamic support build for Groovy.
- Invoke dynamic support
groovy-all-2.5.4-indy.jar
This file is not being resolved for either JCenter or MavenCentral. However I did find a copy here:
- Sonatyoe repo: https://repo1.maven.org/maven2/org/codehaus/groovy/groovy-all/2.5.4/
groovy-2.5.4-indy.jar
- but no
groovy-all-2.5.4-indy.jar
I am not sure what can be done for Gradle to 'resolve' this file and actually find it.
Can someone tell me were I should be getting this JAR file from?
- I'm using coordinates: "
org.codehaus.groovy:groovy-all:2.5.4:indy
" - Is that still the correct expression?
- I'm using coordinates: "
Is this a bug or am I just looking in the wrong places (see #1)?
- Im ny
build.gradle
I was usingjcenter()
and tried changing that tomavenCentral()
. - Neither option came up with the JAR in question.
- Im ny
A final wrinkle is that we run an instance of Nexus. Is there some way to force Nexus to go outside and look-for this JAR?