mirror of
https://github.com/Auxilor/EcoEnchants.git
synced 2024-11-22 15:05:18 +01:00
44 lines
1.2 KiB
Groovy
44 lines
1.2 KiB
Groovy
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')
|
|
project(":v1_16_R3").projectDir = file('NMS/v1_16_R3')
|
|
|
|
// Extensions
|
|
include('Firewand')
|
|
project(":Firewand").projectDir = file('Extensions/Firewand')
|
|
|
|
include('Precision')
|
|
project(":Precision").projectDir = file('Extensions/Precision')
|
|
|
|
include('Effects')
|
|
findProject(':Effects').projectDir = file('Extensions/Effects')
|
|
|
|
include('Summoning')
|
|
findProject(':Summoning').projectDir = file('Extensions/Summoning')
|
|
|
|
include('Endershot')
|
|
findProject(':Endershot').projectDir = file('Extensions/Endershot')
|
|
|
|
include('Biomes')
|
|
findProject(':Biomes').projectDir = file('Extensions/Biomes')
|
|
|
|
include('SprintArtifacts')
|
|
findProject(':SprintArtifacts').projectDir = file('Extensions/SprintArtifacts')
|
|
|
|
include('Alchemy')
|
|
findProject(':Alchemy').projectDir = file('Extensions/Alchemy')
|
|
|
|
/*
|
|
include('MMO')
|
|
findProject(':MMO').projectDir = file('Extensions/MMO')
|
|
*/ |