This repository was archived by the owner on Sep 16, 2023. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11docker :
22 image : gcr.io/cloud-devrel-public-resources/owlbot-java:latest
3- digest : sha256:d4b2141d65566523dfd523f63c6e6899ab1281463bce182a9f600e74b0511875
3+ digest : sha256:a3ac08d167454718ff057b97a1950d3cb5e16fc39fb3f355d90276285a6cac75
Original file line number Diff line number Diff line change @@ -38,15 +38,13 @@ function determineMavenOpts() {
3838 | sed -E ' s/^(1\.[0-9]\.0).*$/\1/g'
3939 )
4040
41- case $javaVersion in
42- " 17 " )
41+ if [[ $javaVersion == 17 * ]]
42+ then
4343 # MaxPermSize is no longer supported as of jdk 17
4444 echo -n " -Xmx1024m"
45- ;;
46- * )
45+ else
4746 echo -n " -Xmx1024m -XX:MaxPermSize=128m"
48- ;;
49- esac
47+ fi
5048}
5149
5250export MAVEN_OPTS=$( determineMavenOpts)
Original file line number Diff line number Diff line change @@ -56,13 +56,13 @@ implementation 'com.google.cloud:google-cloud-redis'
5656If you are using Gradle without BOM, add this to your dependencies
5757
5858``` Groovy
59- implementation 'com.google.cloud:google-cloud-redis:2.0.5 '
59+ implementation 'com.google.cloud:google-cloud-redis:2.0.6 '
6060```
6161
6262If you are using SBT, add this to your dependencies
6363
6464``` Scala
65- libraryDependencies += " com.google.cloud" % " google-cloud-redis" % " 2.0.5 "
65+ libraryDependencies += " com.google.cloud" % " google-cloud-redis" % " 2.0.6 "
6666```
6767
6868## Authentication
You can’t perform that action at this time.
0 commit comments