-
Notifications
You must be signed in to change notification settings - Fork 14
/
build.gradle
40 lines (27 loc) · 914 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
apply plugin: 'java'
//apply plugin: 'application'
apply plugin: 'kotlin'
buildscript {
ext.kotlinVersion = '1.2-M2'
repositories {
mavenCentral()
maven { url "https://dl.bintray.com/kotlin/kotlin-dev" }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
compile 'com.github.elect86:glm:471c2fd5d2002696e2721dde19fded16c01fab78'
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"
}
repositories {
mavenCentral()
maven { url "https://dl.bintray.com/kotlin/kotlin-dev" }
maven { url 'https://jitpack.io' }
}