replace customModule dependencies with implementation's
This shouldn't change how anything compiles and is done for simplicity sake
This commit is contained in:
+2
-2
@@ -242,7 +242,7 @@ subprojects { p ->
|
||||
|
||||
// Add core
|
||||
if (p != project(":api") && p != project(":core")) {
|
||||
customModule(project(":core")) {
|
||||
implementation(project(":core")) {
|
||||
// Remove Junit test libraries
|
||||
exclude group: "org.junit.jupiter", module: "junit-jupiter"
|
||||
exclude group: "org.junit.jupiter", module: "junit-jupiter-engine"
|
||||
@@ -252,7 +252,7 @@ subprojects { p ->
|
||||
|
||||
// Add the api
|
||||
if (p != project(":api")) {
|
||||
customModule(project(":api")) {
|
||||
implementation(project(":api")) {
|
||||
// Remove Junit test libraries
|
||||
exclude group: "org.junit.jupiter", module: "junit-jupiter"
|
||||
exclude group: "org.junit.jupiter", module: "junit-jupiter-engine"
|
||||
|
||||
Reference in New Issue
Block a user