-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathbuild.gradle
48 lines (38 loc) · 1.02 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
plugins {
id 'idea'
id 'com.github.johnrengelman.shadow' version '8.1.1'
id 'java-library'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.13'
}
apply plugin: 'org.openjfx.javafxplugin'
group 'com.github.bricklou'
version '1.0.0'
repositories {
mavenCentral()
maven {
url = 'https://litarvan.github.io/maven'
name = 'LitarvanMaven'
}
maven {
url = 'https://jitpack.io'
name = 'JitPack'
}
}
dependencies {
implementation 'fr.litarvan:openauth:1.1.6'
implementation 'fr.flowarg:materialdesignfontfx:7.2.96-2'
implementation 'fr.flowarg:flowupdater:1.8.+'
implementation 'fr.flowarg:openlauncherlib:3.2.6'
implementation 'com.github.goxr3plus:FX-BorderlessScene:4+'
implementation 'com.github.oshi:oshi-core:5+'
}
javafx {
modules = ['javafx.controls', 'javafx.fxml', 'javafx.web', 'javafx.swing']
}
application {
getMainClass().set('com.github.bricklou.launchertuto.Main')
}
compileJava {
options.encoding = "UTF-8"
}