Combine all versions into a single tree

This commit is contained in:
Jonas Herzig
2018-02-10 23:35:57 +01:00
parent ec50efec10
commit 748b9da443
95 changed files with 2731 additions and 644 deletions

View File

@@ -1,5 +1,30 @@
if (System.getenv('REPRODUCIBLE_BUILD') == '1') {
rootProject.buildFileName = 'gradle/reprod/tmp/build.gradle'
} else {
include 'ReplayStudio'
}
include ':jGui'
([
'core',
'1.8',
'1.8.9',
'1.9.4',
'1.12'
].collect {":jGui:versions:$it"} as String[]).each {
include it
}
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.collect {":versions:$it"}.each {
include it
}