Create a multi-project with Gradle/Maven
Gradle
(Groovy)
.
├── app
│ ...
│ └── build.gradle
└── settings.gradle
1
2
rootProject.name = 'basic-multiproject'
include 'app'
1
2
3
4
5
6
7
plugins {
id 'application'
}
application {
mainClass = 'com.example.Hello'
}
References
This post is licensed under CC BY 4.0 by the author.