Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ resolvers +=
"Sonatype OSS Snapshots" at "https://s01.oss.sonatype.org/content/repositories/snapshots"

lazy val jenaV = "5.3.0"
lazy val jellyV = "3.7.0"
lazy val jellyV = "3.7.1"
lazy val graalvmV = "25.0.2"

addCommandAlias("fixAll", "scalafixAll; scalafmtAll")
Expand Down Expand Up @@ -36,8 +36,8 @@ lazy val graalOptions = Seq(
// Needed to skip initializing all charsets.
// See: https://github.com/Jelly-RDF/cli/issues/154
"--initialize-at-build-time=org.glassfish.json.UnicodeDetectingInputStream",
"-H:+TrackPrimitiveValues", // SkipFlow optimization -- will be default in GraalVM 25
"-H:+UsePredicates", // SkipFlow optimization -- will be default in GraalVM 25
"-H:+TrackPrimitiveValues", // SkipFlow optimization
"-H:+UsePredicates", // SkipFlow optimization
"-H:+MLCallCountProfileInference", // ML inference for hot/cold method detection
// Make sure we don't include stuff that should be unreachable in the native image
"-H:AbortOnMethodReachable=*UUID.randomUUID*",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ object RdfToJelly extends RdfSerDesCommand[RdfToJellyOptions, RdfFormat.Readable
.enableNamespaceDeclarations(getOptions.enableNamespaceDeclarations)
.isDelimited(getOptions.delimited)
.build()
JellyStreamWriter(JenaConverterFactory.getInstance(), variant, outputStream)
JellyStreamWriter.create(JenaConverterFactory.getInstance(), variant, outputStream)

RiotParserUtil.parse(
getOptions.rdfPerformanceOptions.resolveIris,
Expand Down