-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
123 lines (102 loc) · 3.14 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
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
plugins {
id "idea"
id "org.jetbrains.kotlin.jvm" version "1.3.72"
id "org.jetbrains.kotlin.kapt" version "1.3.72"
id "org.jetbrains.kotlin.plugin.spring" version "1.3.72"
id "org.springframework.boot" version "2.0.2.RELEASE"
id "io.codearte.nexus-staging" version "0.11.0"
id "maven"
id "signing"
}
apply plugin: "io.spring.dependency-management"
group = "io.openfuture"
version = '${VERSION}'
sourceCompatibility = 12
repositories {
mavenCentral()
}
dependencies {
// Sdk
compile("io.openfuture:sdk:1.0.0")
// Spring
compile("org.springframework.boot:spring-boot-starter")
compile("org.springframework.boot:spring-boot-starter-amqp")
compile("org.springframework.boot:spring-boot-configuration-processor")
// Kotlin
compile("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
compile("org.jetbrains.kotlin:kotlin-reflect")
// Tools
compile("javax.validation:validation-api:2.0.1.Final")
// Test
testCompile("org.springframework.boot:spring-boot-starter-test")
}
compileKotlin {
kotlinOptions {
freeCompilerArgs = ["-Xjsr305=strict"]
jvmTarget = "12"
}
}
compileTestKotlin {
kotlinOptions {
freeCompilerArgs = ["-Xjsr305=strict"]
jvmTarget = "12"
}
}
bootJar { enabled = false }
jar { enabled = true }
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-spring-boot-sdk"
packaging "jar"
url "https://github.com/OpenFuturePlatform/open-api-spring-boot-sdk"
description "OPEN Platform Spring boot SDK"
licenses {
license {
name "MIT licence"
url "https://github.com/OpenFuturePlatform/open-api-spring-boot-sdk/blob/master/LICENCE.txt"
}
}
scm {
url "https://github.com/OpenFuturePlatform/open-api-spring-boot-sdk"
}
developers {
developer {
id "openplatform"
name "OPEN Platform"
}
}
}
}
}
}
nexusStaging {
numberOfRetries = 40
delayBetweenRetriesInMillis = 8000
}