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") {
|
if ((project.hasProperty('RELEASE_MODE') && project.property('RELEASE_MODE') == "true") || System.getenv('RELEASE_MODE') == "true") {
|
||||||
api "com.insanusmokrassar:postssystem.utils.repos:$core_version"
|
api "com.insanusmokrassar:postssystem.utils.repos:$core_version"
|
||||||
} else {
|
} 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") {
|
if ((project.hasProperty('RELEASE_MODE') && project.property('RELEASE_MODE') == "true") || System.getenv('RELEASE_MODE') == "true") {
|
||||||
api "com.insanusmokrassar:postssystem.utils.repos:$core_version"
|
api "com.insanusmokrassar:postssystem.utils.repos:$core_version"
|
||||||
} else {
|
} else {
|
||||||
api project(":utils:repos")
|
api project(":utils:repos:common")
|
||||||
}
|
}
|
||||||
|
|
||||||
testImplementation "org.jetbrains.kotlin:kotlin-test"
|
testImplementation "org.jetbrains.kotlin:kotlin-test"
|
||||||
|
@ -1,26 +1,20 @@
|
|||||||
rootProject.name='postssystem'
|
rootProject.name='postssystem'
|
||||||
|
|
||||||
String[] includes = [
|
include ':utils:repos:common'
|
||||||
':utils:repos',
|
include ':utils:repos:exposed'
|
||||||
':utils:repos:exposed',
|
|
||||||
|
|
||||||
':exposed:commons',
|
include ':exposed:commons'
|
||||||
|
|
||||||
':ktor:common',
|
include ':ktor:common'
|
||||||
':ktor:client',
|
include ':ktor:client'
|
||||||
|
|
||||||
':core:api',
|
include ':core:api'
|
||||||
':core:exposed',
|
include ':core:exposed'
|
||||||
':core:ktor:common',
|
include ':core:ktor:common'
|
||||||
':core:ktor:client',
|
include ':core:ktor:client'
|
||||||
|
|
||||||
':publishing:api',
|
include ':publishing:api'
|
||||||
':publishing:exposed',
|
include ':publishing:exposed'
|
||||||
|
|
||||||
':markups',
|
include ':markups'
|
||||||
':markups:html'
|
include ':markups:html'
|
||||||
]
|
|
||||||
|
|
||||||
includes.each {
|
|
||||||
include it
|
|
||||||
}
|
|
||||||
|
@ -13,7 +13,7 @@ buildscript {
|
|||||||
}
|
}
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id "org.jetbrains.kotlin.plugin.serialization"
|
id "org.jetbrains.kotlin.plugin.serialization" version "$kotlin_version"
|
||||||
}
|
}
|
||||||
|
|
||||||
project.version = "$core_version"
|
project.version = "$core_version"
|
||||||
@ -37,7 +37,7 @@ dependencies {
|
|||||||
api "com.insanusmokrassar:postssystem.utils.repos:$core_version"
|
api "com.insanusmokrassar:postssystem.utils.repos:$core_version"
|
||||||
api "com.insanusmokrassar:postssystem.exposed.commons:$core_version"
|
api "com.insanusmokrassar:postssystem.exposed.commons:$core_version"
|
||||||
} else {
|
} else {
|
||||||
api project(":utils:repos")
|
api project(":utils:repos:common")
|
||||||
api project(":exposed:commons")
|
api project(":exposed:commons")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user