Skip to content

Commit de396d9

Browse files
singleton11marc0der
authored andcommitted
Add Kotlin Toolchain candidate
1 parent a57bad2 commit de396d9

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
package io.sdkman.changelogs
2+
3+
import com.github.mongobee.changeset.{ChangeLog, ChangeSet}
4+
import com.mongodb.client.MongoDatabase
5+
6+
@ChangeLog(order = "093")
7+
class KotlinToolchainMigrations {
8+
@ChangeSet(
9+
order = "001",
10+
id = "001_add_kotlin_toolchain_candidate",
11+
author = "singleton11"
12+
)
13+
def migration001(implicit db: MongoDatabase) =
14+
Candidate(
15+
candidate = "kotlin-toolchain",
16+
name = "Kotlin Toolchain",
17+
description =
18+
"A set of tools for building and managing Kotlin projects, with a focus on user experience and tooling.",
19+
websiteUrl = "https://kotlin-toolchain.org",
20+
distribution = "UNIVERSAL"
21+
).insert()
22+
}

0 commit comments

Comments
 (0)