Skip to content

Commit

Permalink
georgberky#54: add test with depManagemet
Browse files Browse the repository at this point in the history
  • Loading branch information
sparsick committed Oct 7, 2022
1 parent 790ab5e commit 43f1782
Show file tree
Hide file tree
Showing 3 changed files with 89 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.github.georgberky.maven.plugins.depsupdate</groupId>
<artifactId>multi-module-test-parent</artifactId>
<version>0.6.0</version>
</parent>

<artifactId>native-git-provider-module1</artifactId>

<dependencies>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.15.0</version>
</dependency>
</dependencies>



</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.github.georgberky.maven.plugins.depsupdate</groupId>
<artifactId>multi-module-test-parent</artifactId>
<version>0.6.0</version>
</parent>

<artifactId>native-git-provider-module2</artifactId>

<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.5.2</version>
</dependency>
</dependencies>



</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>io.github.georgberky.maven.plugins.depsupdate</groupId>
<artifactId>multi-module-test-parent</artifactId>
<version>0.6.0</version>
<packaging>pom</packaging>

<properties>
<assertj-core.version>3.15.0</assertj-core.version>
</properties>
<scm>
<connection>someConnection</connection>
<developerConnection>someDeveloperConnection</developerConnection>
</scm>

<modules>
<module>module1</module>
<module>module2</module>
</modules>


<build>
<plugins>
<plugin>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
</plugin>
</plugins>
</build>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj-core.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>

0 comments on commit 43f1782

Please sign in to comment.