You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Support configuring quarkus.bootstrap.effective-model-builder as a POM property;
* suport resolving JAR artifacts with classifiers from the classes dir;
* support the JAR and Surefire plugin configurations in the pluginManagement when initializing artifact source sets.
Copy file name to clipboardExpand all lines: independent-projects/bootstrap/maven-resolver/src/main/java/io/quarkus/bootstrap/resolver/maven/BootstrapMavenContext.java
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -97,7 +97,7 @@ public class BootstrapMavenContext {
Copy file name to clipboardExpand all lines: independent-projects/bootstrap/maven-resolver/src/main/java/io/quarkus/bootstrap/resolver/maven/BootstrapMavenContextConfig.java
Copy file name to clipboardExpand all lines: independent-projects/bootstrap/maven-resolver/src/main/java/io/quarkus/bootstrap/resolver/maven/workspace/LocalProject.java
+77-65Lines changed: 77 additions & 65 deletions
Original file line number
Diff line number
Diff line change
@@ -366,71 +366,19 @@ public WorkspaceModule toWorkspaceModule(BootstrapMavenContext ctx) {
Copy file name to clipboardExpand all lines: independent-projects/bootstrap/maven-resolver/src/main/java/io/quarkus/bootstrap/resolver/maven/workspace/LocalWorkspace.java
+5-9Lines changed: 5 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -124,16 +124,12 @@ public File findArtifact(Artifact artifact) {
124
124
returnpath.toFile();
125
125
}
126
126
127
-
if (!artifact.getClassifier().isEmpty()) {
128
-
if ("tests".equals(artifact.getClassifier())) {
129
-
//special classifier used for test jars
130
-
path = lp.getTestClassesDir();
131
-
if (Files.exists(path)) {
132
-
returnpath.toFile();
133
-
}
127
+
if ("tests".equals(artifact.getClassifier())) {
128
+
//special classifier used for test jars
129
+
path = lp.getTestClassesDir();
130
+
if (Files.exists(path)) {
131
+
returnpath.toFile();
134
132
}
135
-
// otherwise, this artifact hasn't been built yet
136
-
returnnull;
137
133
}
138
134
139
135
if (ArtifactCoords.TYPE_JAR.equals(artifact.getExtension())) {
0 commit comments