2020-07-30 09:28:11 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
jcenter()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
|
|
|
|
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$gradle_bintray_plugin_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id "org.jetbrains.kotlin.plugin.serialization" version "$kotlin_version"
|
|
|
|
}
|
|
|
|
|
|
|
|
project.version = "$core_version"
|
|
|
|
project.group = "com.insanusmokrassar"
|
|
|
|
|
|
|
|
apply plugin: "java-library"
|
|
|
|
apply plugin: "kotlin"
|
|
|
|
apply from: "./publish.gradle"
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
jcenter()
|
|
|
|
mavenCentral()
|
|
|
|
maven { url "https://kotlin.bintray.com/kotlinx" }
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
|
|
|
|
|
|
if ((project.hasProperty('RELEASE_MODE') && project.property('RELEASE_MODE') == "true") || System.getenv('RELEASE_MODE') == "true") {
|
|
|
|
api "com.insanusmokrassar:postssystem.core.publishing:$core_version"
|
|
|
|
api "com.insanusmokrassar:postssystem.exposed.commons:$core_version"
|
|
|
|
} else {
|
2020-09-09 18:04:25 +00:00
|
|
|
api projectByName("publishing.api")
|
|
|
|
api projectByName("exposed.commons")
|
2020-07-30 09:28:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
testImplementation "org.xerial:sqlite-jdbc:$test_sqlite_version"
|
|
|
|
testImplementation "org.jetbrains.kotlin:kotlin-test"
|
|
|
|
testImplementation "org.jetbrains.kotlin:kotlin-test-junit"
|
|
|
|
}
|