Skip to content
Merged
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
feat: Add jextract candidate
  • Loading branch information
Oliver Weiler committed Aug 12, 2024
commit 1e612917fed642722b8ebb849c461e3495788542
15 changes: 15 additions & 0 deletions src/main/scala/io/sdkman/changelogs/JExtractMigrations.scala
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,19 @@ class JExtractMigrations {
.insert()
}
}

@ChangeSet(
order = "003",
id = "003_add_jextract_candidate",
author = "helpermethod"
)
def migration003(implicit db: MongoDatabase): Unit = {
Candidate(
candidate = "jextract",
name = "Jextract",
description =
"Jextract mechanically generates Java bindings from native library headers. This is an early access build from OpenJDK Jextract which is part of Code Tools",
websiteUrl = "https://jdk.java.net/jextract/"
).insert()
}
}