Prepare CI build.

This commit is contained in:
Michael Lipp 2023-06-05 13:18:19 +02:00
parent 2d73d3ff07
commit 591205a663

View file

@ -16,6 +16,22 @@ plugins {
project.group = 'org.jdrupes.vmoperator'
task stage {
description = 'To be executed by CI, build and update JavaDoc.'
group = 'build'
// Build everything first
gradle.projectsEvaluated {
dependsOn subprojects.tasks.collect {
tc -> tc.findByName("build") }.flatten()
}
if (JavaVersion.current() == JavaVersion.VERSION_17) {
// Publish JavaDoc
dependsOn gitPublishPush
}
}
eclipse {
project {
file {