gradle update
This commit is contained in:
+11
-5
@@ -23,23 +23,29 @@ sourceSets {
|
|||||||
java {}
|
java {}
|
||||||
}
|
}
|
||||||
graphics {
|
graphics {
|
||||||
|
compileClasspath += sourceSets.math.output
|
||||||
|
runtimeClasspath += sourceSets.math.output
|
||||||
|
java {}
|
||||||
|
}
|
||||||
|
gui {
|
||||||
|
compileClasspath += sourceSets.math.output + sourceSets.graphics.output
|
||||||
|
runtimeClasspath += sourceSets.math.output + sourceSets.graphics.output
|
||||||
java {}
|
java {}
|
||||||
}
|
}
|
||||||
main {
|
main {
|
||||||
compileClasspath += sourceSets.math.output
|
compileClasspath += sourceSets.math.output
|
||||||
runtimeClasspath += sourceSets.math.output
|
runtimeClasspath += sourceSets.math.output
|
||||||
}
|
}
|
||||||
graphics {
|
|
||||||
compileClasspath += sourceSets.math.output
|
|
||||||
runtimeClasspath += sourceSets.math.output
|
|
||||||
java {}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
configurations {
|
configurations {
|
||||||
graphics.extendsFrom implementation
|
graphics.extendsFrom implementation
|
||||||
graphics.extendsFrom runtime
|
graphics.extendsFrom runtime
|
||||||
graphics.extendsFrom mathRuntime
|
graphics.extendsFrom mathRuntime
|
||||||
|
|
||||||
|
gui.extendsFrom mathRuntime
|
||||||
|
gui.extendsFrom graphicsRuntime
|
||||||
implementation.extendsFrom mathRuntime
|
implementation.extendsFrom mathRuntime
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user