core/exposed/commons/build.gradle

47 lines
1.3 KiB
Groovy
Raw Normal View History

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 {
2020-08-05 10:21:30 +00:00
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
2020-07-30 09:28:11 +00:00
api "org.jetbrains.exposed:exposed-core:$exposed_version"
2020-08-10 12:10:03 +00:00
api "org.jetbrains.exposed:exposed-jdbc:$exposed_version"
2020-07-30 09:28:11 +00:00
if ((project.hasProperty('RELEASE_MODE') && project.property('RELEASE_MODE') == "true") || System.getenv('RELEASE_MODE') == "true") {
2020-08-05 10:21:30 +00:00
api "com.insanusmokrassar:postssystem.utils.repos:$core_version"
2020-07-30 09:28:11 +00:00
} else {
2020-08-10 13:09:46 +00:00
api projectByName("postssystem.utils.repos.common")
2020-07-30 09:28:11 +00:00
}
testImplementation "org.jetbrains.kotlin:kotlin-test"
testImplementation "org.jetbrains.kotlin:kotlin-test-junit"
}