-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
128 lines (108 loc) · 3.22 KB
/
build.gradle
File metadata and controls
128 lines (108 loc) · 3.22 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
plugins {
id "jacoco"
id "idea"
id "org.jetbrains.kotlin.jvm" version "1.3.72"
id "org.jetbrains.kotlin.kapt" version "1.3.72"
id "io.codearte.nexus-staging" version "0.11.0"
id "maven"
id "signing"
}
group = "io.openfuture"
version = '${VERSION}'
sourceCompatibility = JavaVersion.VERSION_12
repositories {
mavenCentral()
}
dependencies {
// Kotlin
compile("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.50")
// Tools
compile("org.apache.httpcomponents:httpclient:4.5")
// Jackson
compile("com.fasterxml.jackson.core:jackson-databind:2.0.1")
compile("com.fasterxml.jackson.module:jackson-module-kotlin:2.9.4.1")
// Test
compile("junit:junit:4.12")
compile("org.assertj:assertj-core:3.10.0")
compile("org.mockito:mockito-all:1.10.19")
compile("org.powermock:powermock-mockito-release-full:1.6.4")
}
compileKotlin {
kotlinOptions.jvmTarget = "12"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "12"
}
// Jacoco
jacocoTestReport {
reports {
xml.enabled = true
html.enabled = true
}
afterEvaluate {
classDirectories.from = files(classDirectories.files.collect {
fileTree(dir: it, exclude: [
'io/openfuture/sdk/*Application*',
'io/openfuture/sdk/domain/**',
'io/openfuture/sdk/exception/**',
])
})
}
}
check.dependsOn jacocoTestReport
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = "javadoc"
from "build/docs/javadoc"
}
task sourcesJar(type: Jar) {
from sourceSets.main.allSource
classifier = "sources"
}
artifacts {
archives jar
archives javadocJar
archives sourcesJar
}
if (project.hasProperty("sign")) {
signing {
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: '${OSSRHUSERNAME}', password: '${OSSRHPASSWORD}')
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: '${OSSRHUSERNAME}', password: '${OSSRHPASSWORD}')
}
pom.project {
name "open-api-jvm-sdk"
packaging "jar"
url "https://github.com/OpenFuturePlatform/open-api-jvm-sdk"
description "OPEN Platform JVM SDK"
licenses {
license {
name "MIT licence"
url "https://github.com/OpenFuturePlatform/open-api-jvm-sdk/blob/master/LICENCE.txt"
}
}
scm {
url "https://github.com/OpenFuturePlatform/open-api-jvm-sdk"
}
developers {
developer {
id "openplatform"
name "OPEN Platform"
}
}
}
}
}
}
nexusStaging {
numberOfRetries = 40
delayBetweenRetriesInMillis = 8000
}