@@ -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
1615group = ' org.springframework.integration'
1716
@@ -24,18 +23,18 @@ repositories {
2423}
2524
2625ext {
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
4645 linkScmConnection = ' https://github.com/spring-projects/spring-integration-aws.git'
4746 linkScmDevConnection = ' git@github.com: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
5351ext. javadocLinks = [
@@ -89,7 +87,7 @@ dependencyManagement {
8987}
9088
9189jacoco {
92- toolVersion = ' 0.8.4 '
90+ toolVersion = ' 0.8.5 '
9391}
9492
9593checkstyle {
@@ -249,7 +247,6 @@ task schemaZip(type: Zip) {
249247 from xsdFile. path
250248 }
251249 }
252-
253250}
254251
255252task docsZip (type : Zip ) {
@@ -265,7 +262,6 @@ task docsZip(type: Zip) {
265262 from(javadoc) {
266263 into ' api'
267264 }
268-
269265}
270266
271267task 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"
0 commit comments