35 lines
656 B
Groovy
35 lines
656 B
Groovy
include ':jGui'
|
|
[
|
|
'core',
|
|
'1.8',
|
|
'1.8.9',
|
|
'1.9.4',
|
|
'1.12'
|
|
].each { version ->
|
|
include ":jGui:$version"
|
|
project(":jGui:$version").with {
|
|
projectDir = file("jGui/versions/$version")
|
|
buildFileName = '../common.gradle'
|
|
}
|
|
}
|
|
|
|
def versions = [
|
|
'core',
|
|
'1.8',
|
|
'1.8.9',
|
|
'1.9.4',
|
|
'1.10.2',
|
|
'1.11',
|
|
'1.11.2',
|
|
'1.12',
|
|
'1.12.1',
|
|
'1.12.2'
|
|
]
|
|
versions.each { version ->
|
|
include ":$version"
|
|
project(":$version").with {
|
|
projectDir = file("versions/$version")
|
|
buildFileName = '../common.gradle'
|
|
}
|
|
}
|