Skip to content

Commit ad8c476

Browse files
committed
Upgrade dependencies
1 parent d83f636 commit ad8c476

File tree

2 files changed

+19
-21
lines changed

2 files changed

+19
-21
lines changed

build.gradle

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@ plugins {
55
id 'jacoco'
66
id 'org.sonarqube' version '2.8'
77
id 'checkstyle'
8-
id 'org.ajoberstar.grgit' version '3.1.1'
8+
id 'org.ajoberstar.grgit' version '4.0.0'
99
id "io.spring.dependency-management" version '1.0.8.RELEASE'
10-
id 'com.jfrog.artifactory' version '4.9.8' apply false
10+
id 'com.jfrog.artifactory' version '4.10.0' apply false
1111
}
12-
description = 'Spring Integration AWS Support'
1312

14-
apply from: "${rootProject.projectDir}/publish-maven.gradle"
13+
description = 'Spring Integration AWS Support'
1514

1615
group = 'org.springframework.integration'
1716

@@ -24,18 +23,18 @@ repositories {
2423
}
2524

2625
ext {
27-
assertjVersion = '3.13.2'
26+
assertjVersion = '3.14.0'
2827
awaitilityVersion = '4.0.1'
2928
dynamodbLockClientVersion = '1.1.0'
30-
jacksonVersion = '2.10.0'
29+
jacksonVersion = '2.10.1'
3130
junitVersion = '5.5.2'
3231
servletApiVersion = '4.0.1'
3332
localstackVersion = '0.1.22'
3433
log4jVersion = '2.12.1'
35-
springCloudAwsVersion = '2.2.0.RC1'
36-
springIntegrationVersion = '5.2.1.BUILD-SNAPSHOT'
37-
kinesisClientVersion = '1.12.0'
38-
kinesisProducerVersion = '0.13.1'
34+
springCloudAwsVersion = '2.2.0.BUILD-SNAPSHOT'
35+
springIntegrationVersion = '5.2.2.BUILD-SNAPSHOT'
36+
kinesisClientVersion = '1.13.0'
37+
kinesisProducerVersion = '0.14.0'
3938

4039
idPrefix = 'aws'
4140

@@ -46,8 +45,7 @@ ext {
4645
linkScmConnection = 'https://github.com/spring-projects/spring-integration-aws.git'
4746
linkScmDevConnection = '[email protected]:spring-projects/spring-integration-aws.git'
4847

49-
modifiedFiles =
50-
files(grgit.status().unstaged.modified).filter{ f -> f.name.endsWith('.java') }
48+
modifiedFiles = files(grgit.status().unstaged.modified).filter{ f -> f.name.endsWith('.java') }
5149
}
5250

5351
ext.javadocLinks = [
@@ -89,7 +87,7 @@ dependencyManagement {
8987
}
9088

9189
jacoco {
92-
toolVersion = '0.8.4'
90+
toolVersion = '0.8.5'
9391
}
9492

9593
checkstyle {
@@ -249,7 +247,6 @@ task schemaZip(type: Zip) {
249247
from xsdFile.path
250248
}
251249
}
252-
253250
}
254251

255252
task docsZip(type: Zip) {
@@ -265,7 +262,6 @@ task docsZip(type: Zip) {
265262
from(javadoc) {
266263
into 'api'
267264
}
268-
269265
}
270266

271267
task distZip(type: Zip, dependsOn: [docsZip, schemaZip]) {
@@ -302,3 +298,5 @@ task dist(dependsOn: assemble) {
302298
group = 'Distribution'
303299
description = 'Builds -dist, -docs and -schema distribution archives.'
304300
}
301+
302+
apply from: "${rootProject.projectDir}/publish-maven.gradle"

publish-maven.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ publishing {
1313
name = project.description
1414
description = project.description
1515
}
16-
url = 'https://github.com/spring-projects/spring-amqp'
16+
url = linkScmUrl
1717
organization {
1818
name = 'Spring IO'
19-
url = 'https://spring.io/projects/spring-ampq'
19+
url = 'https://spring.io/projects/spring-integration'
2020
}
2121
licenses {
2222
license {
@@ -26,9 +26,9 @@ publishing {
2626
}
2727
}
2828
scm {
29-
url = 'https://github.com/spring-projects/spring-integration-aws'
30-
connection = 'scm:git:git://github.com/spring-projects/spring-integration-aws'
31-
developerConnection = 'scm:git:git://github.com/spring-projects/spring-integration-aws'
29+
url = linkScmUrl
30+
connection = linkScmConnection
31+
developerConnection = linkScmDevConnection
3232
}
3333
developers {
3434
developer {
@@ -40,7 +40,7 @@ publishing {
4040
}
4141
issueManagement {
4242
system = 'GitHub'
43-
url = 'https://github.com/spring-projects/spring-amqp/issues'
43+
url = linkIssue
4444
}
4545
}
4646
versionMapping {

0 commit comments

Comments
 (0)