-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
52 lines (43 loc) · 1014 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
40
41
42
43
44
45
46
47
48
49
50
51
52
plugins {
id 'java'
id "com.diffplug.gradle.spotless" version "3.27.0"
}
group 'com.adscore'
version '1.0.0'
sourceCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
implementation 'com.adscore:adscore-client-libraries:1.0.4'
}
spotless {
java {
target fileTree(project.projectDir) {
include '**/*.java'
// exclude assertj generated classes
exclude 'build/generated-src/**/*.*'
}
importOrder 'java', 'javax', 'org', 'com', 'co', ''
removeUnusedImports()
googleJavaFormat()
}
}
java {
withJavadocJar()
withSourcesJar()
}
javadoc {
if(JavaVersion.current().isJava9Compatible()) {
options.addBooleanOption('html5', true)
}
}
jar {
manifest {
attributes 'Main-Class': 'com.adscore.signature.sample.SignatureVerifierSampleMain'
}
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}