Skip to content

Commit

Permalink
feat: Add jextract candidate (#701)
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Weiler authored Aug 12, 2024
1 parent 3a16ecb commit f3bc785
Showing 1 changed file with 15 additions and 0 deletions.
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()
}
}

0 comments on commit f3bc785

Please sign in to comment.