We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daa3df6 commit 349dd8dCopy full SHA for 349dd8d
independent-projects/extension-maven-plugin/src/main/java/io/quarkus/maven/ExtensionDescriptorMojo.java
@@ -705,6 +705,13 @@ private Scm getScm() {
705
Scm scm = null;
706
final Artifact artifact = project.getArtifact();
707
LocalProject localProject = workspaceProvider.getProject(artifact.getGroupId(), artifact.getArtifactId());
708
+
709
+ if (localProject == null) {
710
+ final Log log = getLog();
711
+ log.warn("Workspace provider could not resolve local project for " + artifact.getGroupId() + ":"
712
+ + artifact.getArtifactId());
713
+ }
714
715
while (scm == null && localProject != null) {
716
scm = localProject.getRawModel().getScm();
717
localProject = localProject.getLocalParent();
0 commit comments