-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (24 loc) · 749 Bytes
/
build.gradle
File metadata and controls
33 lines (24 loc) · 749 Bytes
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
plugins {
id "java"
}
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
group = "com.github.mikesafonov"
version = "0.1.0"
repositories {
mavenCentral()
}
wrapper {
gradleVersion = "6.0.1"
}
dependencies {
implementation 'org.jogamp.jogl:jogl-all-main:2.3.2'
implementation 'org.jogamp.jogl:jogl-all:2.3.2'
implementation 'org.jogamp.gluegen:gluegen-rt:2.3.2'
implementation 'org.jogamp.gluegen:gluegen-rt-main:2.3.2'
implementation 'org.jogamp.jocl:jocl-main:2.3.2'
implementation 'org.joml:joml:1.9.3'
implementation files('libs/pixelmed.jar')
compileOnly("org.projectlombok:lombok:1.18.16")
annotationProcessor("org.projectlombok:lombok:1.18.16")
}