-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16138 from aloubyansky/workspace-loading
Make sure all the project modules are loaded into workspace in case the root pom does not declare any
- Loading branch information
Showing
7 changed files
with
133 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 1 addition & 3 deletions
4
...c/main/java/io/quarkus/bootstrap/resolver/maven/workspace/UnresolvedVersionException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
...p/maven-resolver/src/test/resources/workspace-root-no-module/root/module1/module2/pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.acme</groupId> | ||
<artifactId>module1</artifactId> | ||
<version>1.0</version> | ||
</parent> | ||
|
||
<artifactId>module2</artifactId> | ||
|
||
</project> |
13 changes: 13 additions & 0 deletions
13
...p/maven-resolver/src/test/resources/workspace-root-no-module/root/module1/module3/pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.acme</groupId> | ||
<artifactId>module1</artifactId> | ||
<version>1.0</version> | ||
</parent> | ||
|
||
<artifactId>module3</artifactId> | ||
|
||
</project> |
17 changes: 17 additions & 0 deletions
17
...bootstrap/maven-resolver/src/test/resources/workspace-root-no-module/root/module1/pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.acme</groupId> | ||
<artifactId>root</artifactId> | ||
<version>1.0</version> | ||
</parent> | ||
|
||
<artifactId>module1</artifactId> | ||
<packaging>pom</packaging> | ||
<modules> | ||
<module>module2</module> | ||
<module>module3</module> | ||
</modules> | ||
</project> |
10 changes: 10 additions & 0 deletions
10
...rojects/bootstrap/maven-resolver/src/test/resources/workspace-root-no-module/root/pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>org.acme</groupId> | ||
<artifactId>root</artifactId> | ||
<version>1.0</version> | ||
<packaging>pom</packaging> | ||
|
||
</project> |