2020-11-17 12:52:00 +01:00
|
|
|
rootProject.name = 'parent'
|
|
|
|
include('v1_15_R1')
|
|
|
|
include('plugin')
|
|
|
|
include('API')
|
|
|
|
include('v1_16_R1')
|
|
|
|
include('v1_16_R2')
|
|
|
|
include('v1_16_R3')
|
|
|
|
|
|
|
|
project(":v1_15_R1").projectDir = file('NMS/v1_15_R1')
|
|
|
|
project(":plugin").projectDir = file('Plugin')
|
|
|
|
project(":API").projectDir = file('NMS/API')
|
|
|
|
project(":v1_16_R1").projectDir = file('NMS/v1_16_R1')
|
|
|
|
project(":v1_16_R2").projectDir = file('NMS/v1_16_R2')
|
2020-11-20 18:56:15 +01:00
|
|
|
project(":v1_16_R3").projectDir = file('NMS/v1_16_R3')
|
2020-11-21 13:20:53 +01:00
|
|
|
|
|
|
|
// Extensions
|
|
|
|
include('Firewand')
|
2020-11-20 18:56:15 +01:00
|
|
|
project(":Firewand").projectDir = file('Extensions/Firewand')
|
2020-11-21 13:20:53 +01:00
|
|
|
|
|
|
|
include('Precision')
|
|
|
|
project(":Precision").projectDir = file('Extensions/Precision')
|
|
|
|
|
2020-11-22 12:58:30 +01:00
|
|
|
include('Effects')
|
|
|
|
findProject(':Effects').projectDir = file('Extensions/Effects')
|
|
|
|
|
2020-11-22 16:57:56 +01:00
|
|
|
include('Summoning')
|
|
|
|
findProject(':Summoning').projectDir = file('Extensions/Summoning')
|
2020-11-23 21:17:28 +01:00
|
|
|
|
|
|
|
include('Endershot')
|
2020-11-25 13:04:42 +01:00
|
|
|
findProject(':Endershot').projectDir = file('Extensions/Endershot')
|
|
|
|
|
|
|
|
include('Biomes')
|
2020-11-25 14:15:28 +01:00
|
|
|
findProject(':Biomes').projectDir = file('Extensions/Biomes')
|
|
|
|
|
|
|
|
include('SprintArtifacts')
|
|
|
|
findProject(':SprintArtifacts').projectDir = file('Extensions/SprintArtifacts')
|
|
|
|
|
2020-11-26 10:13:22 +01:00
|
|
|
include('Alchemy')
|
|
|
|
findProject(':Alchemy').projectDir = file('Extensions/Alchemy')
|
2020-11-28 22:11:10 +01:00
|
|
|
|
2020-12-16 21:22:06 +01:00
|
|
|
/*
|
2020-11-28 22:11:10 +01:00
|
|
|
include('MMO')
|
2020-12-16 21:22:06 +01:00
|
|
|
findProject(':MMO').projectDir = file('Extensions/MMO')
|
|
|
|
*/
|