-
Notifications
You must be signed in to change notification settings - Fork 160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing dependency in mavenCentral file-specs-java 1.0.0 #522
Comments
https://search.maven.org/artifact/org.jfrog.filespecs/file-specs-java Why does mavenCentral even allow this? |
This is breaking our builds. Going to have to pin an earlier version of |
Everything's broken for us as well; was this dependency supposed to make into mavenCentral? |
Any solution for it? We have this issue also |
I was able to specify |
More info https://search.maven.org/artifact/org.jfrog.filespecs/file-specs-java <- Does not exist and is required by https://search.maven.org/artifact/org.jfrog.buildinfo/build-info-extractor/2.28.2/jar |
@haata @prudnitskiy @DanielJRutledge @spartanhooah We are working on publishing this library to Maven Central. Here is the PR which should resolve this issue: jfrog/file-specs-java#7. As a workaround, you can downgrade to Gradle Artifactory plugin buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.24.5"
}
}
apply plugin: "com.jfrog.artifactory" We're terribly sorry for this coincidence. |
@haata @prudnitskiy @DanielJRutledge @spartanhooah |
The new one seems to work; though we had to introduce a new exception for the file-specs-java artifacts, as the licenses are not picked up for a couple days by Xray. It would be helpful to know whether you guys plan to introduce more artifact types. We have an issue open with Jfrog support about the licenses for these artifacts not being picked up locally. |
It seems like the most recent release of build-info-extractor is pulling in a dependency that is not published in mavenCentral.
The only place I can find file-specs-java is from oss.jfrog.org (https://oss.jfrog.org/ui/packages/gav:%2F%2Forg.jfrog.filespecs:file-specs-java?name=file-specs-java&type=packages). Was this an oversight as this indicates the documentation here (https://www.jfrog.com/confluence/display/JFROG/Gradle+Artifactory+Plugin) is no longer correct (cannot used the latest.release for build-info-extractor-gradle).
The text was updated successfully, but these errors were encountered: