-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
43 lines (33 loc) · 976 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
43
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.2.60'
}
group 'swineproject'
version '0.1.0'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
compile("org.eclipse.platform:org.eclipse.swt.win32.win32.x86_64:3.106.3") {
transitive = false
}
compile "org.eclipse.platform:org.eclipse.jface:3.12.2"
// Embedded Python
compile 'black.ninia:jep:3.8.2'
// Used for the project filetype
// compile 'org.yaml:snakeyaml:1.24'
compile 'com.electronwill.night-config:toml:3.5.2'
// Used for spell-checking in the text editor
compile 'org.languagetool:languagetool-core:4.5'
compile 'org.languagetool:language-all:4.5'
compile 'org.lwjgl.osgi:org.lwjgl.opengl:3.2.0'
compile "org.joml:joml:1.9.12"
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}