mirror of
https://github.com/jlengrand/exposed-imdb.git
synced 2026-03-10 00:11:16 +00:00
32 lines
819 B
Groovy
32 lines
819 B
Groovy
plugins {
|
|
id 'org.jetbrains.kotlin.jvm' version '1.3.70-eap-42'
|
|
}
|
|
|
|
group 'org.example'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
|
|
// maven { url 'https://dl.bintray.com/kotlin/exposed' }
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
|
compile "org.jetbrains.exposed:exposed-core:0.21.1"
|
|
compile "org.jetbrains.exposed:exposed-dao:0.21.1"
|
|
compile "org.jetbrains.exposed:exposed-jdbc:0.21.1"
|
|
compile "mysql:mysql-connector-java:5.1.46"
|
|
|
|
compile "io.vertx:vertx-core:3.8.5"
|
|
compile "io.vertx:vertx-web:3.8.5"
|
|
compile "io.vertx:vertx-lang-kotlin:3.8.5"
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
}
|
|
compileTestKotlin {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
} |