Files
spring-rewrite-commons/spring-rewrite-commons-launcher/testcode/maven-projects/multi-module-1
Fabian Krüger 96abad9b8c initial commit
2023-12-14 01:38:10 +01:00
..
2023-12-14 01:38:10 +01:00
2023-12-14 01:38:10 +01:00
2023-12-14 01:38:10 +01:00
2023-12-14 01:38:10 +01:00

Simple Maven project with two modules.

[plantuml,"multi-module-1","svg"]
.....
component multiModule1 as "multi-module-1" {
    file parentPom as "pom.xml"{
    }
    component multiModule1 as "module-1" {
        file pom1 as "pom.xml"{
        }
    }
    component multiModule2 as "module-2" {
        file pom2 as "pom.xml"{
        }
    }
    parentPom .> multiModule1
    parentPom .> multiModule2

    multiModule1 ..> multiModule2
}
.....