-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (28 loc) · 959 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
42
apply plugin: 'java'
apply plugin: 'kotlin'
buildscript {
ext.kotlin_version = '1.2.10'
repositories {
mavenCentral()
maven { url "https://dl.bintray.com/kotlin/kotlin-dev" }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
dependencies {
testCompile 'junit:junit:4.12'
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile 'com.github.kotlin-graphics:glm:v0.07'
compile 'com.github.elect86:uno-sdk:0161a60cd1f9393d419f01660d225a81e0bd45e3'
compile 'one.util:streamex:0.6.5'
def joglVersion = '2.3.2'
compile "org.jogamp.gluegen:gluegen-rt-main:$joglVersion"
compile "org.jogamp.jogl:jogl-all-main:$joglVersion"
compile group: 'org.smurn', name: 'jply', version: '0.2.0'
}
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
maven { url "https://dl.bintray.com/kotlin/kotlin-dev" }
}