This repository has been archived by the owner on Jan 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
69 lines (54 loc) · 1.53 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
plugins {
id 'java'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.9'
id 'com.github.johnrengelman.shadow' version '7.0.0'
}
tasks.shadowJar.configure {
classifier = null
}
apply plugin: 'org.openjfx.javafxplugin'
group 'com.workerai'
archivesBaseName = "WorkerLauncher"
repositories {
mavenCentral()
maven {
url = 'https://jitpack.io/'
name = 'JitPack'
}
maven {
url 'https://litarvan.github.io/maven'
}
}
dependencies {
implementation 'org.slf4j:slf4j-nop:1.7.25'
implementation 'org.xerial:sqlite-jdbc:3.36.0.3'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
implementation "com.sparkjava:spark-core:2.9.4"
implementation 'fr.litarvan:openauth:1.1.2'
implementation 'de.jensd:fontawesomefx-fontawesome:4.7.0-9.1.2'
implementation 'de.jensd:fontawesomefx-materialdesignfont:2.0.26-9.1.2'
implementation 'fr.flowarg:flowupdater:1.7.1'
implementation 'fr.flowarg:openlauncherlib:3.2.5'
implementation 'com.github.goxr3plus:FX-BorderlessScene:4.+'
implementation 'com.github.oshi:oshi-core:6.2.2'
}
javafx {
version = 17
modules = ['javafx.controls', 'javafx.fxml', 'javafx.web', 'javafx.swing']
}
application {
getMainClass().set('com.workerai.launcher.Main')
}
compileJava {
options.encoding = "UTF-8"
}
jar {
manifest.attributes('Main-Class': 'com.workerai.launcher.Main')
}
sourceSets {
main {
java.srcDir('src/main')
resources.srcDir('src/main')
}
}