I have the following dependencies:
dependencies {
compile
“com.vaadin:vaadin:6.7.0”
providedCompile “javax.servlet:servlet-api:2.5”
compile
“org.hibernate:hibernate-core:3.6.8.Final”
compile
“org.springframework:spring-context:3.1.0.RELEASE”
compile
“org.slf4j:slf4j-api:1.6.4”
testCompile “junit:junit:4.10”
testCompile (‘org.easymock:easymock:3.0’) {transitive=true}
testRuntime “cglib:cglib-nodep:2.2” // I don’t think I’m supposed to need this…
}
I cleared out my gradle cache, uncommented mavenCentral() and when I ran the build stuff started downloading ok, but then I got these messages, which don’t seem to make sense. I’m sure they are transitive dependencies of stuff I have declared, but what is up with the ;working@PHECK-L bit (PHECK-L is the name of my laptop).
Could not resolve all dependencies for configuration ‘:compile’:
-
unresolved dependency: antlr#antlr;working@PHECK-L: not found
-
unresolved dependency: commons-collections#commons-collections;working@PHECK-L: not found
-
unresolved dependency: dom4j#dom4j;working@PHECK-L: not found
-
unresolved dependency: org.hibernate#hibernate-commons-annotations;working@PHECK-L: not found
-
unresolved dependency: org.hibernate.javax.persistence#hibernate-jpa-2.0-api;working@PHECK-L: not found
EDIT: I’ve narrowed it down to the hibernate depenency, all others download fine. Is this a known issue with the hibernate pom files?
EDIT 2: Even weirder, this only occurs when I have mavenCentral() uncommented. More background: I had previously had no problem with grabbing hibernate, and have transferred the jars to local flatDir repositories. When I uncomment mavenCentral, it fails to see the flatDir repository (because it’s appending the working@PHECK-L bit, which seems to be Ivy ligo for “we have nfc what the version is”). If I comment out mavenCentral(), it happily sees the existing antlr and other jar files.
This came about because I was trying to add new dependencies. (but note that commenting out hibernate makes it all work even with mavenCentral left uncommented). This is just weird.