Dependency updates

This commit is contained in:
Soby Chacko
2020-09-29 16:13:39 -04:00
parent 5dc1fc0ada
commit 43aa44a151
3 changed files with 3 additions and 3 deletions

View File

@@ -73,7 +73,7 @@
<dependency>
<groupId>org.springframework.cloud.fn</groupId>
<artifactId>payload-converter-function</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>${java-functions.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>

View File

@@ -58,7 +58,7 @@
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream-binder-kafka</artifactId>
<!-- 3.0.8.BUILD-SNAPSHOT or newer is required because of an issue with the KafkaNullConverter -->
<version>3.0.8.BUILD-SNAPSHOT</version>
<version>3.0.8.RELEASE</version>
<scope>test</scope>
</dependency>

View File

@@ -32,7 +32,7 @@ function iterate_through_apps_folders_and_update {
cd ../../
if [[ $VERSION =~ M[0-9]|RC[0-9] ]]; then
lines=$(find $BASE_DIR -type f -name pom.xml | xargs grep SNAPSHOT | grep -v ".contains(" | grep -v regex | wc -l)
lines=$(find $BASE_DIR -type f -name pom.xml | xargs grep SNAPSHOT | grep -v ".contains(" | grep -v "<!--"| grep -v regex | wc -l)
if [ $lines -eq 0 ]; then
echo "All good"
else