fix library transitiveness
parent
bf49182098
commit
b6779a6ec0
|
@ -74,8 +74,9 @@ public class AbstractPlugin implements Plugin<Project> {
|
||||||
|
|
||||||
|
|
||||||
Configuration compileModsConfig = project.getConfigurations().maybeCreate(Constants.COMPILE_MODS);
|
Configuration compileModsConfig = project.getConfigurations().maybeCreate(Constants.COMPILE_MODS);
|
||||||
compileModsConfig.setTransitive(false); //Dont get transitive deps of mods
|
compileModsConfig.setTransitive(false); // Dont get transitive deps of mods
|
||||||
project.getConfigurations().maybeCreate(Constants.MINECRAFT);
|
Configuration minecraftConfig = project.getConfigurations().maybeCreate(Constants.MINECRAFT);
|
||||||
|
minecraftConfig.setTransitive(false); // The launchers do not recurse dependencies
|
||||||
|
|
||||||
configureIDEs();
|
configureIDEs();
|
||||||
configureCompile();
|
configureCompile();
|
||||||
|
|
Loading…
Reference in New Issue