1
- val vertxVersion = " 3.8 .0"
2
- val awsSdkVersion = " 2.7.8 "
1
+ val vertxVersion = " 3.9 .0"
2
+ val awsSdkVersion = " 2.12.0 "
3
3
val junit5Version = " 5.4.0"
4
4
val logbackVersion = " 1.2.3"
5
5
val integrationOption = " tests.integration"
6
6
7
+ group = " io.reactiverse"
8
+ version = " 0.5.0"
9
+
7
10
plugins {
8
11
`java- library`
9
12
`maven- publish`
10
- signing
11
13
jacoco
14
+ id(" com.jfrog.bintray" ) version " 1.8.5"
12
15
id(" com.jaredsburrows.license" ) version " 0.8.42"
13
16
id(" org.sonarqube" ) version " 2.6"
14
17
}
15
18
16
- repositories {
17
- mavenCentral()
18
- maven {
19
- url = uri(" https://oss.sonatype.org/content/repositories/snapshots" )
20
- }
21
- }
22
-
23
- group = " io.reactiverse"
24
- version = " 0.0.1-SNAPSHOT"
25
-
26
- project.extra[" isReleaseVersion" ] = ! version.toString().endsWith(" SNAPSHOT" )
27
-
19
+ // In order to publish SNAPSHOTs to Sonatype Snapshots repository => the CI should define such `ossrhUsername` and `ossrhPassword` properties
28
20
if (! project.hasProperty(" ossrhUsername" )) {
29
- logger.warn(" No ossrhUsername property defined in your Gradle properties file to deploy to Maven Central , using 'foo' to make the build pass" )
21
+ logger.warn(" No ossrhUsername property defined in your Gradle properties file to deploy to Sonatype Snapshots , using 'foo' to make the build pass" )
30
22
project.extra[" ossrhUsername" ] = " foo"
31
23
}
32
24
if (! project.hasProperty(" ossrhPassword" )) {
33
- logger.warn(" No ossrhPassword property defined in your Gradle properties file to deploy to Maven Central , using 'bar' to make the build pass" )
25
+ logger.warn(" No ossrhPassword property defined in your Gradle properties file to deploy to Sonatype Snapshots , using 'bar' to make the build pass" )
34
26
project.extra[" ossrhPassword" ] = " bar"
35
27
}
36
28
29
+ // Releases are published to Bintray under the Reactiverse organization
30
+ // Then manually synced to Central
31
+ bintray {
32
+ user = System .getenv(" BINTRAY_USER" )
33
+ key = System .getenv(" BINTRAY_KEY" )
34
+ with (pkg) {
35
+ userOrg = " reactiverse"
36
+ repo = " releases"
37
+ name = project.name
38
+ setLicenses(" Apache-2.0" )
39
+ vcsUrl = " https://github.com/reactiverse/aws-sdk"
40
+ setLabels(" vertx" , " vert.x" , " aws-sdk" , " amazon web services" )
41
+ publicDownloadNumbers = true
42
+ with (version) {
43
+ name = project.version.toString()
44
+ description = " ${project.description} . Version: ${project.version} "
45
+ }
46
+ setPublications(" mavenJava" )
47
+ }
48
+ }
49
+
50
+ repositories {
51
+ mavenCentral()
52
+ maven {
53
+ url = uri(" https://oss.sonatype.org/content/repositories/snapshots" )
54
+ }
55
+ }
56
+
37
57
dependencies {
38
58
api(" io.vertx:vertx-core:$vertxVersion " )
39
59
api(" software.amazon.awssdk:aws-core:$awsSdkVersion " )
54
74
}
55
75
56
76
jacoco {
57
- toolVersion = " 0.8.2 "
77
+ toolVersion = " 0.8.5 "
58
78
}
59
79
60
80
tasks {
@@ -100,18 +120,14 @@ tasks {
100
120
(options as StandardJavadocDocletOptions ).links(
101
121
" http://docs.oracle.com/javase/8/docs/api/" ,
102
122
" https://sdk.amazonaws.com/java/api/latest/" ,
103
- " http://vertx.io/docs/3.8 .0/apidocs/" ,
123
+ " http://vertx.io/docs/3.9 .0/apidocs/" ,
104
124
" http://www.reactive-streams.org/reactive-streams-1.0.0-javadoc/" ,
105
125
" http://netty.io/4.1/api/"
106
126
)
107
127
}
108
128
109
- withType<Sign > {
110
- onlyIf { project.extra[" isReleaseVersion" ] as Boolean }
111
- }
112
-
113
129
withType<Wrapper > {
114
- gradleVersion = " 5.4.1 "
130
+ gradleVersion = " 6.3 "
115
131
}
116
132
}
117
133
@@ -121,9 +137,10 @@ publishing {
121
137
from(components[" java" ])
122
138
artifact(tasks[" sourcesJar" ])
123
139
artifact(tasks[" javadocJar" ])
140
+ setVersion(project.version)
124
141
pom {
125
142
name.set(project.name)
126
- description.set(" Reactiverse AWS SDK 2 with Vert.x" )
143
+ description.set(" Reactiverse AWS SDK v2 with Vert.x" )
127
144
url.set(" https://github.com/reactiverse/aws-sdk" )
128
145
licenses {
129
146
license {
@@ -144,32 +161,24 @@ publishing {
144
161
url.set(" https://github.com/reactiverse/aws-sdk" )
145
162
}
146
163
}
147
- }
148
- }
149
- repositories {
150
- // To locally check out the poms
151
- maven {
152
- val releasesRepoUrl = uri(" $buildDir /repos/releases" )
153
- val snapshotsRepoUrl = uri(" $buildDir /repos/snapshots" )
154
- name = " BuildDir"
155
- url = if (project.extra[" isReleaseVersion" ] as Boolean ) releasesRepoUrl else snapshotsRepoUrl
156
- }
157
- maven {
158
- val releasesRepoUrl = uri(" https://oss.sonatype.org/service/local/staging/deploy/maven2/" )
159
- val snapshotsRepoUrl = uri(" https://oss.sonatype.org/content/repositories/snapshots/" )
160
- name = " SonatypeOSS"
161
- url = if (project.extra[" isReleaseVersion" ] as Boolean ) releasesRepoUrl else snapshotsRepoUrl
162
- credentials {
163
- val ossrhUsername: String by project
164
- val ossrhPassword: String by project
165
- username = ossrhUsername
166
- password = ossrhPassword
164
+ repositories {
165
+ // To locally check out the poms
166
+ maven {
167
+ name = " BuildDir"
168
+ url = uri(" $buildDir /repos/snapshots" )
169
+ }
170
+ // Snapshots are published to Sonatype's repository directly
171
+ maven {
172
+ name = " SonatypeOSS"
173
+ url = uri(" https://oss.sonatype.org/content/repositories/snapshots/" )
174
+ credentials {
175
+ val ossrhUsername: String by project
176
+ val ossrhPassword: String by project
177
+ username = ossrhUsername
178
+ password = ossrhPassword
179
+ }
180
+ }
167
181
}
168
182
}
169
183
}
170
184
}
171
-
172
- signing {
173
- sign(publishing.publications[" mavenJava" ])
174
- }
175
-
0 commit comments