-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (43 loc) · 1.3 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
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '6.1.0'
}
group 'guleri24'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
/* For Uncheck Java warnings
tasks.withType(JavaCompile) {
options.compilerArgs += ['-Xlint:unchecked']
}*/
dependencies {
implementation project(':Kademlia')
implementation group: 'commons-codec', name: 'commons-codec', version: '1.15'
// Adjusted library; some classes now implement Serializable.
implementation files("lib/cryptid-core-1.0.0-jar-with-dependencies.jar")
implementation files("lib/CloudCrypto-1.0-SNAPSHOT-jar-with-dependencies.jar")
implementation('com.google.guava:guava:31.1-jre')
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
implementation 'org.jetbrains:annotations:23.0.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
}
jar {
manifest {
attributes 'Main-Class': 'com.guleri24.siddu.Demo'
}
}
test {
useJUnitPlatform()
}
javadoc {
configure(options) {
tags(
'todo:X"',
'apiNote:a:"API Note:"',
'implSpec:a:"Implementation Requirements:"',
'implNote:a:"Implementation Note:"'
)
}
}