-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
39 lines (32 loc) · 963 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
36
37
38
39
plugins {
id 'java'
id "com.github.johnrengelman.shadow" version "8.1.1"
}
group = 'net.paiique.dcs'
version = '1.2.2'
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
implementation 'com.github.mwiede:jsch:0.2.17'
implementation group: 'org.bouncycastle', name: 'bcprov-jdk18on', version: '1.78'
implementation 'com.google.code.gson:gson:2.10.1'
}
jar {
manifest {
attributes (
'Main-Class': 'net.paiique.dcs.Main',
'Premain-Class': 'net.paiique.dcs.Agent',
'Can-Redefine-Classes': 'true',
'Can-Retransform-Classes': 'true',
'Can-Set-Native-Method-Prefix': 'true',
'Implementation-Title': "DCS",
'Implementation-Version': rootProject.version
)
}
}
test {
useJUnitPlatform()
}