core/postssystem.core.exposed/build.gradle

48 lines
1.4 KiB
Groovy
Raw Normal View History

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"
}
}
2020-04-10 07:12:55 +00:00
plugins {
id "org.jetbrains.kotlin.plugin.serialization" version "$kotlin_version"
}
project.version = "$core_version"
project.group = "com.insanusmokrassar"
2020-04-10 10:30:20 +00:00
apply plugin: "java-library"
2020-04-10 10:44:22 +00:00
apply plugin: "kotlin"
2020-04-10 10:50:41 +00:00
apply from: "./publish.gradle"
repositories {
mavenLocal()
jcenter()
mavenCentral()
maven { url "https://kotlin.bintray.com/kotlinx" }
}
2020-04-10 10:30:20 +00:00
dependencies {
2020-07-30 09:28:11 +00:00
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
2019-11-20 04:03:16 +00:00
2020-04-10 10:30:20 +00:00
if ((project.hasProperty('RELEASE_MODE') && project.property('RELEASE_MODE') == "true") || System.getenv('RELEASE_MODE') == "true") {
api "com.insanusmokrassar:postssystem.core:$core_version"
2020-07-30 09:28:11 +00:00
api "com.insanusmokrassar:postssystem.exposed.commons:$core_version"
2020-04-10 10:30:20 +00:00
} else {
2020-07-30 09:28:11 +00:00
api project(":postssystem.core")
api project(":postssystem.exposed.commons")
2020-04-10 07:12:55 +00:00
}
2020-04-10 06:54:06 +00:00
2020-04-10 10:30:20 +00:00
testImplementation "org.xerial:sqlite-jdbc:$test_sqlite_version"
testImplementation "org.jetbrains.kotlin:kotlin-test"
testImplementation "org.jetbrains.kotlin:kotlin-test-junit"
}