-
Notifications
You must be signed in to change notification settings - Fork 479
Parent POM referenced but not published to Maven Central #11
Copy link
Copy link
Closed
Description
plugin-1.1.0.pom references a parent POM:
<parent>
<groupId>com.h3xstream.findsecbugs</groupId>
<artifactId>root-pom</artifactId>
<version>1.1.0</version>
</parent>
But com.h3xstream.findsecbugs:root-pom:1.1.0 does not exist in Maven Central. This is a problem for the Gradle build tool, which attempts to resolve the parent POM:
FAILURE: Build failed with an exception.
* What went wrong:
Could not resolve all dependencies for configuration ':myProjectName:findbugs'.
> Could not resolve com.h3xstream.findsecbugs:plugin:1.1.0.
Required by:
com.example.myproject:0.3-SNAPSHOT
> Could not find any version that matches com.h3xstream.findsecbugs:root-pom:1.1.0.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug
option to get more log output.
BUILD FAILED
Total time: 8.377 secs
Reactions are currently unavailable