Skip to content

Commit 3e6a139

Browse files
authored
Merge pull request #527 from RADAR-base/release-2.2.1
Release 2.2.1
2 parents d01f192 + c5764ed commit 3e6a139

File tree

7 files changed

+31
-23
lines changed

7 files changed

+31
-23
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ When upgrading to version 0.6.0 from version 0.5.x or earlier, please follow the
7070
This package is available as docker image [`radarbase/radar-output-restructure`](https://hub.docker.com/r/radarbase/radar-output-restructure). The entrypoint of the image is the current application. So in all the commands listed in usage, replace `radar-output-restructure` with for example:
7171

7272
```shell
73-
docker run --rm -t --network s3 -v "$PWD/output:/output" radarbase/radar-output-restructure:2.2.0 -o /output /myTopic
73+
docker run --rm -t --network s3 -v "$PWD/output:/output" radarbase/radar-output-restructure:2.2.1 -o /output /myTopic
7474
```
7575

7676
## Command line usage
@@ -182,7 +182,7 @@ This package requires at least Java JDK 8. Build the distribution with
182182
and install the package into `/usr/local` with for example
183183
```shell
184184
sudo mkdir -p /usr/local
185-
sudo tar -xzf build/distributions/radar-output-restructure-2.2.0.tar.gz -C /usr/local --strip-components=1
185+
sudo tar -xzf build/distributions/radar-output-restructure-2.2.1.tar.gz -C /usr/local --strip-components=1
186186
```
187187

188188
Now the `radar-output-restructure` command should be available.

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ plugins {
1616
}
1717

1818
group = "org.radarbase"
19-
version = "2.2.0"
19+
version = "2.2.1"
2020

2121
repositories {
2222
mavenCentral()
@@ -314,5 +314,5 @@ ktlint {
314314
}
315315

316316
tasks.wrapper {
317-
gradleVersion = "7.4.2"
317+
gradleVersion = "7.5.1"
318318
}

gradle.properties

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
kotlin.code.style=official
22

3-
kotlinVersion=1.6.21
4-
dokkaVersion=1.6.21
5-
dockerComposeVersion=0.16.4
3+
kotlinVersion=1.7.10
4+
dokkaVersion=1.7.10
5+
dockerComposeVersion=0.16.8
66
dependencyUpdateVersion=0.42.0
77
nexusPublishVersion=1.1.0
8-
jsoupVersion=1.15.1
8+
jsoupVersion=1.15.2
99

10-
coroutinesVersion=1.6.1
11-
avroVersion=1.11.0
10+
coroutinesVersion=1.6.4
11+
avroVersion=1.11.1
1212
snappyVersion=1.1.8.4
1313
jacksonVersion=2.13.3
1414
jCommanderVersion=1.82
1515
almworksVersion=1.1.2
16-
minioVersion=8.4.1
16+
minioVersion=8.4.3
1717
guavaVersion=31.1-jre
1818
opencsvVersion=5.6
19-
okhttpVersion=4.9.3
19+
okhttpVersion=4.10.0
2020
jedisVersion=4.2.3
2121
slf4jVersion=1.7.36
22-
log4jVersion=2.17.2
23-
azureStorageVersion=12.16.1
24-
nettyVersion=4.1.77.Final
22+
log4jVersion=2.18.0
23+
azureStorageVersion=12.19.0
24+
nettyVersion=4.1.79.Final
2525

26-
junitVersion=5.8.2
26+
junitVersion=5.9.0
2727
mockitoKotlinVersion=4.0.0
2828
radarSchemasVersion=0.7.9

gradle/wrapper/gradle-wrapper.jar

935 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

gradlew

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,12 @@ set -- \
205205
org.gradle.wrapper.GradleWrapperMain \
206206
"$@"
207207

208+
# Stop when "xargs" is not available.
209+
if ! command -v xargs >/dev/null 2>&1
210+
then
211+
die "xargs is not available"
212+
fi
213+
208214
# Use "xargs" to parse quoted args.
209215
#
210216
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.

gradlew.bat

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
@rem limitations under the License.
1515
@rem
1616

17-
@if "%DEBUG%" == "" @echo off
17+
@if "%DEBUG%"=="" @echo off
1818
@rem ##########################################################################
1919
@rem
2020
@rem Gradle startup script for Windows
@@ -25,7 +25,7 @@
2525
if "%OS%"=="Windows_NT" setlocal
2626

2727
set DIRNAME=%~dp0
28-
if "%DIRNAME%" == "" set DIRNAME=.
28+
if "%DIRNAME%"=="" set DIRNAME=.
2929
set APP_BASE_NAME=%~n0
3030
set APP_HOME=%DIRNAME%
3131

@@ -40,7 +40,7 @@ if defined JAVA_HOME goto findJavaFromJavaHome
4040

4141
set JAVA_EXE=java.exe
4242
%JAVA_EXE% -version >NUL 2>&1
43-
if "%ERRORLEVEL%" == "0" goto execute
43+
if %ERRORLEVEL% equ 0 goto execute
4444

4545
echo.
4646
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
@@ -75,13 +75,15 @@ set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
7575

7676
:end
7777
@rem End local scope for the variables with windows NT shell
78-
if "%ERRORLEVEL%"=="0" goto mainEnd
78+
if %ERRORLEVEL% equ 0 goto mainEnd
7979

8080
:fail
8181
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
8282
rem the _cmd.exe /c_ return code!
83-
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
84-
exit /b 1
83+
set EXIT_CODE=%ERRORLEVEL%
84+
if %EXIT_CODE% equ 0 set EXIT_CODE=1
85+
if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
86+
exit /b %EXIT_CODE%
8587

8688
:mainEnd
8789
if "%OS%"=="Windows_NT" endlocal

0 commit comments

Comments
 (0)