2020-07-10 03:26:23 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2021-05-09 07:59:24 -04:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>project-collision</artifactId>
|
|
|
|
|
2020-07-10 03:26:23 -04:00
|
|
|
<parent>
|
|
|
|
<artifactId>version-collision</artifactId>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2022-12-08 08:28:09 -05:00
|
|
|
<artifactId>version-collision-project-a</artifactId>
|
2020-07-10 03:26:23 -04:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<!-- uncomment to exclude guava transitive artifact from module -->
|
2021-05-09 07:59:24 -04:00
|
|
|
<!-- <exclusions> -->
|
|
|
|
<!-- <exclusion> -->
|
|
|
|
<!-- <groupId>com.google.guava</groupId> -->
|
|
|
|
<!-- <artifactId>guava</artifactId> -->
|
|
|
|
<!-- </exclusion> -->
|
|
|
|
<!-- </exclusions> -->
|
2020-07-10 03:26:23 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2022-12-08 08:28:09 -05:00
|
|
|
<artifactId>version-collision-project-b</artifactId>
|
2020-07-10 03:26:23 -04:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2021-05-09 07:59:24 -04:00
|
|
|
|
2020-07-10 03:26:23 -04:00
|
|
|
</project>
|