-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
41 lines (33 loc) · 921 Bytes
/
build.gradle
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
40
41
buildscript {
ext.kotlin_version = '1.0.4'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: "kotlin"
apply plugin: 'application'
mainClassName = 'io.frontierrobotics.changeme.ApplicationKt'
group = 'io.frontierrobotics'
version = '0.1.0'
description = """Change Me"""
repositories {
jcenter()
mavenCentral()
maven {
url "http://dl.bintray.com/wasabifx/wasabifx"
}
maven {
url "http://repository.jetbrains.com/all"
}
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile "com.pi4j:pi4j-core:1.0"
compile "org.wasabifx:wasabi:0.3.37"
testCompile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
testCompile "org.jetbrains.spek:spek-api:1.0.89"
testCompile "com.nhaarman:mockito-kotlin:0.6.1"
}