forked from ltearno/pom-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
248 additions
and
19 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<project> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>fr.lteconsulting</groupId> | ||
<artifactId>a</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
|
||
<packaging>jar</packaging> | ||
|
||
<description>test with submodules</description> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
|
||
<!-- module dependencies --> | ||
<dependency> | ||
<groupId>fr.lteconsulting</groupId> | ||
<artifactId>b</artifactId> | ||
<version>${project.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.hamcrest</groupId> | ||
<artifactId>*</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>fr.lteconsulting</groupId> | ||
<artifactId>b</artifactId> | ||
<version>${project.version}</version> | ||
<classifier>tests</classifier> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<!-- other dependencies --> | ||
<dependency> | ||
<groupId>fr.lteconsulting</groupId> | ||
<artifactId>e</artifactId> | ||
<version>2.0-SNAPSHOT</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>fr.lteconsulting</groupId> | ||
<artifactId>e</artifactId> | ||
<version>2.0-SNAPSHOT</version> | ||
<classifier>tests</classifier> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>fr.lteconsulting</groupId> | ||
<artifactId>f</artifactId> | ||
<version>1.5</version> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
|
||
<modules> | ||
<module>b</module> | ||
</modules> | ||
|
||
<profiles> | ||
<profile> | ||
<id>default-build</id> | ||
<activation> | ||
<activeByDefault>true</activeByDefault> | ||
</activation> | ||
<modules> | ||
<module>c</module> | ||
</modules> | ||
</profile> | ||
<profile> | ||
<id>additional</id> | ||
<modules> | ||
<module>d</module> | ||
</modules> | ||
</profile> | ||
</profiles> | ||
</project> |
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,26 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<project> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>fr.lteconsulting</groupId> | ||
<artifactId>a</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>b</artifactId> | ||
<description>submodule of a</description> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>fr.lteconsulting</groupId> | ||
<artifactId>e</artifactId> | ||
<version>2.0-SNAPSHOT</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>fr.lteconsulting</groupId> | ||
<artifactId>f</artifactId> | ||
</dependency> | ||
</dependencies> | ||
</project> |
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,38 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<project> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>fr.lteconsulting</groupId> | ||
<artifactId>a</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>c</artifactId> | ||
<description>submodule of a</description> | ||
|
||
<dependencies> | ||
<!-- inter module dependencies --> | ||
<dependency> | ||
<groupId>fr.lteconsulting</groupId> | ||
<artifactId>b</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>fr.lteconsulting</groupId> | ||
<artifactId>b</artifactId> | ||
<classifier>tests</classifier> | ||
</dependency> | ||
|
||
<!-- other dependencies --> | ||
<dependency> | ||
<groupId>fr.lteconsulting</groupId> | ||
<artifactId>e</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>fr.lteconsulting</groupId> | ||
<artifactId>f</artifactId> | ||
<version>1.5</version> | ||
</dependency> | ||
</dependencies> | ||
</project> |
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,32 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<project> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>fr.lteconsulting</groupId> | ||
<artifactId>a</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>d</artifactId> | ||
<description>submodule of a</description> | ||
|
||
<dependencies> | ||
<!-- inter module dependencies --> | ||
<dependency> | ||
<groupId>fr.lteconsulting</groupId> | ||
<artifactId>b</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>fr.lteconsulting</groupId> | ||
<artifactId>b</artifactId> | ||
<classifier>tests</classifier> | ||
</dependency> | ||
<dependency> | ||
<groupId>fr.lteconsulting</groupId> | ||
<artifactId>c</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
</dependencies> | ||
</project> |
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,21 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<project> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>fr.lteconsulting</groupId> | ||
<artifactId>e</artifactId> | ||
<version>2.0-SNAPSHOT</version> | ||
|
||
<packaging>jar</packaging> | ||
|
||
<description>test project e</description> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>fr.lteconsulting</groupId> | ||
<artifactId>f</artifactId> | ||
<version>1.5</version> | ||
</dependency> | ||
</dependencies> | ||
</project> |
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> | ||
|
||
<groupId>fr.lteconsulting</groupId> | ||
<artifactId>f</artifactId> | ||
<version>1.5</version> | ||
|
||
<packaging>jar</packaging> | ||
|
||
<description>test project e</description> | ||
</project> |