Skip to content

Commit 1b94813

Browse files
authored
Update Jelly-JVM to 3.7.1 (#263)
Supersedes #261
1 parent 2416b66 commit 1b94813

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ resolvers +=
66
"Sonatype OSS Snapshots" at "https://s01.oss.sonatype.org/content/repositories/snapshots"
77

88
lazy val jenaV = "5.3.0"
9-
lazy val jellyV = "3.7.0"
9+
lazy val jellyV = "3.7.1"
1010
lazy val graalvmV = "25.0.2"
1111

1212
addCommandAlias("fixAll", "scalafixAll; scalafmtAll")
@@ -36,8 +36,8 @@ lazy val graalOptions = Seq(
3636
// Needed to skip initializing all charsets.
3737
// See: https://github.com/Jelly-RDF/cli/issues/154
3838
"--initialize-at-build-time=org.glassfish.json.UnicodeDetectingInputStream",
39-
"-H:+TrackPrimitiveValues", // SkipFlow optimization -- will be default in GraalVM 25
40-
"-H:+UsePredicates", // SkipFlow optimization -- will be default in GraalVM 25
39+
"-H:+TrackPrimitiveValues", // SkipFlow optimization
40+
"-H:+UsePredicates", // SkipFlow optimization
4141
"-H:+MLCallCountProfileInference", // ML inference for hot/cold method detection
4242
// Make sure we don't include stuff that should be unreachable in the native image
4343
"-H:AbortOnMethodReachable=*UUID.randomUUID*",

src/main/scala/eu/neverblink/jelly/cli/command/rdf/RdfToJelly.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ object RdfToJelly extends RdfSerDesCommand[RdfToJellyOptions, RdfFormat.Readable
188188
.enableNamespaceDeclarations(getOptions.enableNamespaceDeclarations)
189189
.isDelimited(getOptions.delimited)
190190
.build()
191-
JellyStreamWriter(JenaConverterFactory.getInstance(), variant, outputStream)
191+
JellyStreamWriter.create(JenaConverterFactory.getInstance(), variant, outputStream)
192192

193193
RiotParserUtil.parse(
194194
getOptions.rdfPerformanceOptions.resolveIris,

0 commit comments

Comments
 (0)