temporal fix of tasks cyclic error

This commit is contained in:
2020-08-10 17:27:16 +06:00
parent 5e15435c11
commit f3f670abd7
12 changed files with 50 additions and 29 deletions
build.gradle
core
exposed/commons
ktor/client
markups
publishing
settings.gradle
utils/repos/exposed

@ -41,7 +41,7 @@ kotlin {
if ((project.hasProperty('RELEASE_MODE') && project.property('RELEASE_MODE') == "true") || System.getenv('RELEASE_MODE') == "true") {
api "com.insanusmokrassar:postssystem.core.api:$core_version"
} else {
api project(":core:api")
api project(":core:core.api")
}
}
}

@ -37,8 +37,8 @@ dependencies {
api "com.insanusmokrassar:postssystem.core.publishing:$core_version"
api "com.insanusmokrassar:postssystem.exposed.commons:$core_version"
} else {
api project(":publishing:api")
api project(":exposed:commons")
api project(":publishing:publishing.api")
api project(":exposed:exposed.commons")
}
testImplementation "org.xerial:sqlite-jdbc:$test_sqlite_version"