Open cpuzicha opened 8 months ago
I had a similar issue and I was able to avoid the error by removing the dependency
<dependency>
<groupId>org.jfrog.buildinfo</groupId>
<artifactId>build-info-extractor</artifactId>
<version>2.41.12</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
for the file mentioned in the error (in your case, /home/cp/.gradle/caches/modules-2/files-2.1/org.jfrog.buildinfo/build-info-extractor/2.41.12/d5ae695415585a1481144ab3d7a59b41af869883/build-info-extractor-2.41.12.pom
)
I'm not sure it's the right solution, but my app seems to be running fine right now and I don't see the error anymore.
exact same error for using gradle plugin build-info-extractor-gradle 5.2.0 because of transitive dep on build-info-extractor 2.41.12
Describe the bug Maven POM contains a self reference:
Test in IntelliJ IDEA with this as a dependency show the following error message (though there seems to be no actual problem)
To Reproduce Look at https://repo1.maven.org/maven2/org/jfrog/buildinfo/build-info-extractor/2.41.14/build-info-extractor-2.41.14.pom
Expected behavior No self reference.
Additional context We have seen this behavior when using the Gradle Plugin 'test-fixtures' https://github.com/gradle/gradle/issues/14936