temp updates

This commit is contained in:
InsanusMokrassar 2020-08-05 21:44:24 +06:00
parent 93f70fe874
commit 5e15435c11
16 changed files with 17 additions and 23 deletions

View File

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

View File

@ -37,7 +37,7 @@ dependencies {
if ((project.hasProperty('RELEASE_MODE') && project.property('RELEASE_MODE') == "true") || System.getenv('RELEASE_MODE') == "true") {
api "com.insanusmokrassar:postssystem.utils.repos:$core_version"
} else {
api project(":utils:repos")
api project(":utils:repos:common")
}
testImplementation "org.jetbrains.kotlin:kotlin-test"

View File

@ -1,26 +1,20 @@
rootProject.name='postssystem'
String[] includes = [
':utils:repos',
':utils:repos:exposed',
include ':utils:repos:common'
include ':utils:repos:exposed'
':exposed:commons',
include ':exposed:commons'
':ktor:common',
':ktor:client',
include ':ktor:common'
include ':ktor:client'
':core:api',
':core:exposed',
':core:ktor:common',
':core:ktor:client',
include ':core:api'
include ':core:exposed'
include ':core:ktor:common'
include ':core:ktor:client'
':publishing:api',
':publishing:exposed',
include ':publishing:api'
include ':publishing:exposed'
':markups',
':markups:html'
]
includes.each {
include it
}
include ':markups'
include ':markups:html'

View File

@ -13,7 +13,7 @@ buildscript {
}
plugins {
id "org.jetbrains.kotlin.plugin.serialization"
id "org.jetbrains.kotlin.plugin.serialization" version "$kotlin_version"
}
project.version = "$core_version"
@ -37,7 +37,7 @@ dependencies {
api "com.insanusmokrassar:postssystem.utils.repos:$core_version"
api "com.insanusmokrassar:postssystem.exposed.commons:$core_version"
} else {
api project(":utils:repos")
api project(":utils:repos:common")
api project(":exposed:commons")
}