forked from Dansoftowner/jSystemThemeDetector
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
35 lines (25 loc) · 926 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
plugins {
id 'java'
}
group 'com.jthemedetector'
version '3.8'
sourceCompatibility = targetCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
// implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.32'
// testImplementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.9'
// testImplementation group: 'ch.qos.logback', name: 'logback-core', version: '1.2.9'
//JNA
implementation 'net.java.dev.jna:jna:5.13.0' // 5.10.0
implementation 'net.java.dev.jna:jna-platform:5.13.0' // 5.10.0
//JFA
// implementation ('de.jangassen:jfa:1.0') { // 1.2.0
// exclude group: 'net.java.dev.jna', module: 'jna' // different jna version
// }
//OSHI
implementation 'com.github.oshi:oshi-core:6.4.4' // 5.8.6
implementation 'io.github.g00fy2:versioncompare:1.4.1'
implementation 'org.jetbrains:annotations:22.0.0'
}