Skip to content

Commit

Permalink
[Java] Upgrade to Agrona 2.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
vyazelenko committed Dec 17, 2024
1 parent 633fe63 commit 268fde0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ subprojects {
all {
testTask.configure {
useJUnitPlatform()
jvmArgs('--add-opens', 'java.base/jdk.internal.misc=ALL-UNNAMED')

testLogging {
for (def level : LogLevel.values())
Expand Down Expand Up @@ -303,6 +304,7 @@ project(':sbe-tool') {
minHeapSize = '2g'
maxHeapSize = '2g'

jvmArgs('--add-opens', 'java.base/jdk.internal.misc=ALL-UNNAMED')
javaLauncher.set(toolchainLauncher)

systemProperty 'sbe.dll', "${rootProject.projectDir}/csharp/sbe-dll/bin/Release/netstandard2.0/SBE.dll"
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[versions]
agrona = "1.23.1"
agrona = "2.0.0"
checkstyle = "10.21.0"
junit = "5.11.4"
jmh = "1.37"
gradle = "8.11.1"

[libraries]
agrona = { group = "org.agrona", name = "agrona", version = { strictly = "[1.23.1, 2.0[", require = "1.23.1" } }
agrona = { group = "org.agrona", name = "agrona", version.ref = "agrona" }
mockito = { group = "org.mockito", name = "mockito-core", version = "5.14.2" }
hamcrest = { group = "org.hamcrest", name = "hamcrest", version = "3.0" }
jqwik = { group = "net.jqwik", name = "jqwik", version = "1.9.2" }
Expand Down

0 comments on commit 268fde0

Please sign in to comment.