replace customModule dependencies with implementation's

This shouldn't change how anything compiles and is done for simplicity sake
This commit is contained in:
James Seibel
2022-10-15 20:34:45 -05:00
parent b1205c73d5
commit 270476f4d2
+2 -2
View File
@@ -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"