forked from edvin/tornadofx-kitchensink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.old
39 lines (31 loc) · 899 Bytes
/
build.gradle.old
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
38
39
group 'no.tornado.tornadofx'
version '1.0'
buildscript {
ext.kotlin_version = '1.0.5-2'
ext.tornadofx_version = '1.5.9-SNAPSHOT'
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'no.tornado:fxlauncher-gradle-plugin:1.0.15'
}
}
repositories {
jcenter()
mavenLocal()
}
apply plugin: 'kotlin'
apply plugin: 'no.tornado.fxlauncher'
fxlauncher {
applicationVendor 'Tornado'
applicationUrl 'http://tornadofx.tornado.no/kitchensink/'
applicationMainClass 'tornadofx.kitchensink.app.KitchenSinkApp'
acceptDowngrade false
deployTarget '[email protected]:www/kitchensink'
}
dependencies {
compile("no.tornado:tornadofx:$tornadofx_version")
compile("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version")
}