forked from jvm-graphics-labs/modern-jogl-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
37 lines (24 loc) · 758 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
apply plugin: 'java'
apply plugin: 'kotlin'
buildscript {
ext.kotlin_version = '1.2-M1'
repositories {
mavenCentral()
maven { url "https://dl.bintray.com/kotlin/kotlin-dev" }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile 'com.github.kotlin-graphics:uno-sdk:c80ea0425a2913ecc2006d0fd475d7714028883c'
def jogl = '2.3.2'
compile "org.jogamp.gluegen:gluegen-rt-main:$jogl"
compile "org.jogamp.jogl:jogl-all-main:$jogl"
}
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
maven { url "https://dl.bintray.com/kotlin/kotlin-dev" }
}