temp updates
This commit is contained in:
parent
93f70fe874
commit
5e15435c11
@ -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")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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"
|
||||
|
@ -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'
|
||||
|
@ -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")
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user