-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (31 loc) · 1.03 KB
/
build.gradle
File metadata and controls
37 lines (31 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
group 'com.veeroute'
version '1.0-SNAPSHOT'
buildscript {
ext.kotlin_version = '1.1.0-rc-91'
repositories {
mavenCentral()
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap-1.1' }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: 'java'
apply plugin: 'kotlin'
repositories {
mavenCentral()
maven { url "http://dl.bintray.com/cy6ergn0m/maven" }
maven { url 'http://dl.bintray.com/kotlin/kotlin-eap-1.1' }
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.11-rc'
compile 'org.jetbrains.kotlinx:vertx3-lang-kotlin:0.0.+'
compile 'io.vertx:vertx-web:3.3.3'
compile 'io.vertx:vertx-mysql-postgresql-client:3.3.3'
}
task runExample(dependsOn: [classes], type: JavaExec) {
main = 'io.vertx.core.Launcher'
args 'run', 'com.veeroute.fb.RootVerticle', '-conf', 'conf/bot-dev.json'
classpath = sourceSets.main.runtimeClasspath
}