forked from hellosign/hellosign-java-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
96 lines (80 loc) · 2.99 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'signing'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
options.compilerArgs.addAll(['--release', '8']) // for java 8 cross-compilation
}
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
processResources {
expand(project.properties)
}
artifacts {
archives javadocJar, sourcesJar
}
signing {
required { gradle.taskGraph.hasTask("uploadArchives") }
sign configurations.archives
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: findProperty('ossrhUsername'), password: findProperty('ossrhPassword'))
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: findProperty('ossrhUsername'), password: findProperty('ossrhPassword'))
}
pom.project {
name 'HelloSign'
packaging 'jar'
// optionally artifactId can be defined here
description 'Use the HelloSign Java SDK to connect your Java app to HelloSign\'s service in microseconds!'
url 'https://www.hellosign.com/'
scm {
connection 'scm:git:git://github.com/hellosign/hellosign-java-sdk.git'
developerConnection 'scm:git:git@github.com:hellosign/hellosign-java-sdk.git'
url 'https://github.com/hellosign/hellosign-java-sdk'
}
licenses {
license {
name 'MIT License'
url 'http://www.opensource.org/licenses/mit-license.php'
}
}
developers {
developer {
id 'jspaetzel'
name 'John Spaetzel'
email 'john.spaetzel@hellosign.com'
url 'https://www.hellosign.com'
}
}
}
}
}
}
task fatJar(type: Jar) {
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}
repositories {
mavenCentral()
}
dependencies {
compile group: 'org.json', name: 'json', version:'20220320'
compile group: 'org.slf4j', name: 'slf4j-api', version:'1.7.36'
compile group: 'commons-codec', name: 'commons-codec', version:'1.15'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
testCompile group: 'junit', name: 'junit', version:'4.13.2'
testCompile group: 'org.slf4j', name: 'slf4j-simple', version:'1.7.36'
testCompile group: 'org.mockito', name: 'mockito-core', version:'4.4.0'
}