-
Notifications
You must be signed in to change notification settings - Fork 72
/
build.gradle
47 lines (41 loc) · 1.49 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
plugins {
id 'java'
id "com.github.johnrengelman.shadow" version "6.1.0"
id 'org.openjfx.javafxplugin' version '0.0.13'
}
javafx {
version = "19"
modules = [ 'javafx.swing' ]
}
jar {
manifest {
attributes(
'Main-Class': 'Main'
)
}
}
group 'com.coocoofroggy'
version '1.0'
project.sourceCompatibility = '19'
project.targetCompatibility = '19'
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'com.google.code.gson:gson:2.9.0'
implementation 'com.formdev:flatlaf:2.4'
// https://mvnrepository.com/artifact/org.apache.httpcomponents.client5/httpclient5
implementation group: 'org.apache.httpcomponents.client5', name: 'httpclient5', version: '5.1.3'
implementation 'com.github.Dansoftowner:jSystemThemeDetector:3.6'
implementation 'com.github.oshi:oshi-core:6.2.2'
implementation group: 'commons-io', name: 'commons-io', version: '2.8.0'
implementation 'com.github.rjeschke:txtmark:0.13'
// https://mvnrepository.com/artifact/com.intellij/forms_rt
implementation group: 'com.intellij', name: 'forms_rt', version: '7.0.3'
// https://mvnrepository.com/artifact/org.apache.commons/commons-compress
implementation group: 'org.apache.commons', name: 'commons-compress', version: '1.21'
// Required by commons compress for XZ support
// https://mvnrepository.com/artifact/org.tukaani/xz
implementation group: 'org.tukaani', name: 'xz', version: '1.9'
}