- JDK
>= 11
./gradlew assemble
If you work with Eclipse Buildship, the following Gradle initialization script avoids the conflict of each project name on the Eclipse workspace.
allprojects { project ->
if (project != project.rootProject) {
project.tasks.matching { it.name == 'eclipseProject' }.each { task ->
task.projectModel.name = (project.rootProject.name + project.path).replace(':', '-')
}
}
}
./gradlew test