Flip API -> Core dependency to Core -> API

This commit is contained in:
James Seibel
2022-09-12 22:25:10 -05:00
parent b37bf72eb2
commit e331def140
5 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -237,7 +237,7 @@ subprojects { p ->
}
// Add core
if (p != project(":core")) {
if (p != project(":api") && p != project(":core")) {
customModule(project(":core")) {
// Remove Junit test libraries
exclude group: "org.junit.jupiter", module: "junit-jupiter"
@@ -247,7 +247,7 @@ subprojects { p ->
}
// Add the api
if (p != project(":api") && p != project(":core")) {
if (p != project(":api")) {
implementation(project(":api")) {
// Remove Junit test libraries
exclude group: "org.junit.jupiter", module: "junit-jupiter"