Skip to content

Commit bc355fb

Browse files
committed
Add TornadoVM candidate
1 parent 6ccb9c8 commit bc355fb

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package io.sdkman.changelogs.java
2+
3+
import com.github.mongobee.changeset.{ChangeLog, ChangeSet}
4+
import com.mongodb.client.MongoDatabase
5+
import io.sdkman.db.MongoConnector
6+
7+
@ChangeLog(order = "050")
8+
class TornadoVMMigrations {
9+
10+
@ChangeSet(order = "001", id = "001_add_tornadovm_candidate", author = "stratika")
11+
def migration001(implicit db: MongoDatabase) = {
12+
Candidate(
13+
candidate = "tornadovm",
14+
name = "TornadoVM",
15+
description = "TornadoVM is a plug-in to OpenJDK and GraalVM that allows Java programmers to automatically run on heterogeneous hardware (GPUs, FPGAs, multi-core CPUs).",
16+
websiteUrl = "https://www.tornadovm.org/"
17+
distribution = "PLATFORM_SPECIFIC"
18+
).insert()
19+
}
20+
}

0 commit comments

Comments
 (0)