-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (31 loc) · 930 Bytes
/
build.gradle
File metadata and controls
39 lines (31 loc) · 930 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
32
33
34
35
36
37
38
39
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.5.10'
}
group = 'dev.yeff.orbital.extensions'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
allprojects {
repositories {
maven { url 'https://jitpack.io' }
maven { url "https://dl.cloudsmith.io/public/electron-studio/jaylib/maven/" }
}
}
dependencies {
testImplementation 'org.jetbrains.kotlin:kotlin-test'
implementation 'uk.co.electronstudio.jaylib:jaylib:4.0.+'
implementation 'uk.co.electronstudio.jaylib:jaylib-natives-windows-x86_64:4.0.+'
implementation 'uk.co.electronstudio.jaylib:jaylib-natives-macosx-x86_64:4.0.+'
implementation 'uk.co.electronstudio.jaylib:jaylib-natives-linux-x86_64:4.0.+'
implementation 'com.github.OrbitalEngine:Orbital:1.5.4'
}
test {
useJUnitPlatform()
}
compileKotlin {
kotlinOptions.jvmTarget = '11'
}
compileTestKotlin {
kotlinOptions.jvmTarget = '11'
}