forked from Bickets/Valkyr-Cache-Suite-Public
-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
73 lines (61 loc) · 2.19 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.0.2-1"
}
}
plugins {
id 'java'
id 'application'
id 'com.stehno.natives' version '0.3.1'
id "org.jetbrains.kotlin.jvm" version "1.3.71"
id 'org.openjfx.javafxplugin' version '0.0.10'
}
group = 'Valkyr'
version = '1.0'
wrapper {
gradleVersion = '6.1.1'
}
mainClassName = ''
subprojects {
apply plugin: 'org.jetbrains.kotlin.jvm'
apply plugin: 'java'
apply plugin: 'com.stehno.natives'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
jcenter()
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}
dependencies {
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
compile('com.googlecode.json-simple:json-simple:1.1.1') {
exclude group: 'org.hamcrest'
}
compile group: 'commons-io', name: 'commons-io', version: '2.6'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.10'
compile group: 'com.google.guava', name: 'guava', version: '27.0.1-jre'
compile group: 'org.apache.ant', name: 'ant', version: '1.9.4'
compile group: 'com.github.jponge', name: 'lzma-java', version: '1.2'
compile group: 'org.lwjgl.lwjgl', name: 'lwjgl', version: '2.9.3'
compile group: 'org.lwjgl.lwjgl', name: 'lwjgl_util', version: '2.9.3'
compile group: 'slick-util', name: 'slick-util', version: '1.0.0'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.12'
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.12'
// https://mvnrepository.com/artifact/org.slf4j/slf4j-api
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.30'
// https://mvnrepository.com/artifact/org.slf4j/log4j-over-slf4j
compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.30'
compile group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib-jdk8', version: '1.3.71'
implementation 'org.reflections:reflections:0.9.11'
}
apply plugin: 'org.openjfx.javafxplugin'
javafx {
version = "17"
modules = [ 'javafx.base', 'javafx.fxml', 'javafx.graphics', 'javafx.controls', 'javafx.media', 'javafx.swing']
}
}