Skip to content

Commit e844c1f

Browse files
committed
Bump version to 0.3.2; Update dependencies
1 parent feb50ae commit e844c1f

File tree

5 files changed

+13
-18
lines changed

5 files changed

+13
-18
lines changed

README.md

+6-6
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.12.1_rc3-blue.svg"></a>
12+
<a href="https://openucx.org/"><img src="https://img.shields.io/badge/ucx-1.12.1-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.1-SNAPSHOT-all.jar`.
44+
The JAR-file should now be located at `build/provider/libs/hadronio-0.3.2-SNAPSHOT-all.jar`.
4545

4646
### Known issues
4747

4848
- Building hadroNIO with a Java version higher than 8, but then running it with 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.12.1-rc3** 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.12.1** 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.1-SNAPSHOT-all.jar -Djava.nio.channels.spi.SelectorProvider=de.hhu.bsinfo.hadronio.HadronioProvider -jar application.jar
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
5757
```
5858

5959
### Enable logging
@@ -63,7 +63,7 @@ hadroNIO uses [SLF4J](http://www.slf4j.org/) for logging. To see any log output,
6363
```groovy
6464
dependencies {
6565
...
66-
implementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.14.1'
66+
implementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.17.2'
6767
...
6868
}
6969
```
@@ -226,7 +226,7 @@ repositories {
226226
}
227227
228228
dependencies {
229-
implementation 'de.hhu.bsinfo:hadronio:0.3.1'
229+
implementation 'de.hhu.bsinfo:hadronio:0.3.2'
230230
}
231231
```
232232

build.gradle

+5-10
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,18 @@ buildscript {
88
}
99
}
1010

11-
plugins {
12-
// git-version plugin needs to be loaded in root project
13-
// https://github.com/palantir/gradle-git-version/issues/353#issuecomment-1069657210
14-
id 'com.palantir.git-version' version '0.13.0'
15-
}
16-
1711
ext {
18-
projectVersion = '0.3.1' + (Boolean.valueOf(System.getProperty('release')) ? '' : '-SNAPSHOT')
12+
projectVersion = '0.3.2' + (Boolean.valueOf(System.getProperty('release')) ? '' : '-SNAPSHOT')
1913

2014
buildConfigVersion = '1.1.8'
15+
gitVersionVersion = '0.15.0'
2116
shadowVersion = '7.1.2'
2217

2318
jucxVersion = '1.12.1'
2419
infinileapVersion = '0.1.0-SNAPSHOT'
25-
agronaVersion = '1.14.0'
20+
agronaVersion = '1.15.1'
2621
picocliVersion = '4.6.3'
27-
nettyVersion = '4.1.74.Final'
22+
nettyVersion = '4.1.76.Final'
2823
threadAffinityVersion = '3.20.0'
2924
slf4jVersion = '1.7.36'
3025
log4jVersion = '2.17.2'
@@ -40,5 +35,5 @@ subprojects {
4035
}
4136

4237
wrapper {
43-
gradleVersion = "7.4"
38+
gradleVersion = "7.4.2"
4439
}

example/src/main/java/de/hhu/bsinfo/hadronio/example/netty/benchmark/throughput/Server.java

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
public class Server implements Runnable {
2727

2828
private static final int ACCEPTOR_THREADS = 1;
29-
private static final int WORKER_THREADS = 1;
3029
private static final Logger LOGGER = LoggerFactory.getLogger(Server.class);
3130

3231
private final InetSocketAddress bindAddress;
+1-1
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-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

provider/build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ plugins {
22
id 'java-library'
33
id 'maven-publish'
44
id 'de.fuerstenau.buildconfig' version "${buildConfigVersion}"
5+
id 'com.palantir.git-version' version "${gitVersionVersion}"
56
id 'com.github.johnrengelman.shadow' version "${shadowVersion}"
67
}
78

0 commit comments

Comments
 (0)