Skip to content

Commit 85d52da

Browse files
committed
Bump version to 0.3.3; Update dependencies
1 parent 60726dc commit 85d52da

File tree

8 files changed

+32
-23
lines changed

8 files changed

+32
-23
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Transparent acceleration for Java NIO applications via [UCX](https://openucx.org
99
<p align="center">
1010
<a href="https://travis-ci.com/github/hhu-bsinfo/hadroNIO"><img src="https://www.travis-ci.com/hhu-bsinfo/hadroNIO.svg?branch=main"></a>
1111
<a href="https://openjdk.java.net/"><img src="https://img.shields.io/badge/java-8+-blue.svg"></a>
12-
<a href="https://openucx.org/"><img src="https://img.shields.io/badge/ucx-1.13.0_rc1-blue.svg"></a>
12+
<a href="https://openucx.org/"><img src="https://img.shields.io/badge/ucx-1.13.0-blue.svg"></a>
1313
<a href="https://github.com/hhu-bsinfo/hadroNIO/blob/master/LICENSE"><img src="https://img.shields.io/badge/license-GPLv3-orange.svg"></a>
1414
</p>
1515

@@ -41,19 +41,19 @@ cd hadroNIO/
4141
./gradlew shadowJar
4242
```
4343

44-
The JAR-file should now be located at `build/provider/libs/hadronio-0.3.2-SNAPSHOT-all.jar`.
44+
The JAR-file should now be located at `build/provider/libs/hadronio-0.3.3-SNAPSHOT-all.jar`.
4545

4646
### Known issues
4747

4848
- Building hadroNIO with a Java version higher than 8, but then running it with a Java 8 JVM results in a `java.lang.NoSuchMethodError`, regarding the class `java.nio.ByteBuffer`. This happens, because the `ByteBuffer` overrides methods of its super class `Buffer` in Java 9+, while it relies on the implementations provided by `Buffer` in Java 8. If you come across this error, make sure to both build an run hadroNIO using Java 8, or use a newer version of Java altogether.
4949

5050
## Run instructions
5151

52-
To run hadroNIO, **UCX 1.13.0-rc1** needs to be installed on your system. See the [OpenUCX GitHub Repository](https://github.com/openucx/ucx) for information on how to build and install UCX.
52+
To run hadroNIO, **UCX 1.13.0** needs to be installed on your system. See the [OpenUCX GitHub Repository](https://github.com/openucx/ucx) for information on how to build and install UCX.
5353

5454
To accelerate an existing Java application (e.g. `application.jar`), the hadroNIO JAR-file needs to be included in the classpath. Additionally, the property `java.nio.channels.spi.SelectorProvider` must be set to `de.hhu.bsinfo.hadronio.HadronioProvider`:
5555
```shell
56-
java -cp path/to/hadronio-0.3.2-SNAPSHOT-all.jar -Djava.nio.channels.spi.SelectorProvider=de.hhu.bsinfo.hadronio.HadronioProvider -jar application.jar
56+
java -cp path/to/hadronio-0.3.3-SNAPSHOT-all.jar -Djava.nio.channels.spi.SelectorProvider=de.hhu.bsinfo.hadronio.HadronioProvider -jar application.jar
5757
```
5858

5959
### Enable logging
@@ -266,7 +266,7 @@ repositories {
266266
}
267267
268268
dependencies {
269-
implementation 'de.hhu.bsinfo:hadronio:0.3.2'
269+
implementation 'de.hhu.bsinfo:hadronio:0.3.3'
270270
}
271271
```
272272

build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,26 @@ buildscript {
99
}
1010

1111
ext {
12-
projectVersion = '0.3.2' + (Boolean.valueOf(System.getProperty('release')) ? '' : '-SNAPSHOT')
12+
projectVersion = '0.3.3' + (Boolean.valueOf(System.getProperty('release')) ? '' : '-SNAPSHOT')
1313

1414
buildConfigPluginVersion = '1.1.8'
1515
gitVersionPluginVersion = '0.15.0'
1616
shadowPluginVersion = '7.1.2'
1717
protobufPluginVersion = '0.8.18'
1818

19-
jucxVersion = '1.13.0-rc2'
19+
jucxVersion = '1.13.0'
2020
infinileapVersion = '0.1.0-SNAPSHOT'
21-
agronaVersion = '1.15.2'
21+
agronaVersion = '1.16.0'
2222
picocliVersion = '4.6.3'
2323
kryoVersion = '5.3.0'
24-
nettyVersion = '4.1.78.Final'
24+
nettyVersion = '4.1.79.Final'
2525
threadAffinityVersion = '3.20.0'
26-
grpcVersion = '1.47.0'
27-
protobufVersion = '3.21.1'
26+
grpcVersion = '1.48.1'
27+
protobufVersion = '3.21.4'
2828
ycsbVersion = '0.17.0'
2929
slf4jVersion = '1.7.36'
30-
log4jVersion = '2.17.2'
31-
junitJupiterVersion = '5.8.2'
30+
log4jVersion = '2.18.0'
31+
junitJupiterVersion = '5.9.0'
3232
}
3333

3434
subprojects {
@@ -40,5 +40,5 @@ subprojects {
4040
}
4141

4242
wrapper {
43-
gradleVersion = "7.4.2"
43+
gradleVersion = "7.5"
4444
}

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-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

infinileap-binding/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
plugins {
1+
// TODO: Reactive, once infinileap is compatible with Java 20
2+
/*plugins {
23
id 'java-library'
34
}
45
@@ -30,4 +31,4 @@ dependencies {
3031
3132
test {
3233
useJUnitPlatform()
33-
}
34+
}*/
-253 KB
Binary file not shown.

0 commit comments

Comments
 (0)