We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a06cc8 commit 1c59184Copy full SHA for 1c59184
1 file changed
src/main/scala/io/sdkman/changelogs/KsrcMigrations.scala
@@ -0,0 +1,21 @@
1
+package io.sdkman.changelogs
2
+
3
+import com.github.mongobee.changeset.{ChangeLog, ChangeSet}
4
+import com.mongodb.client.MongoDatabase
5
6
+@ChangeLog(order = "092")
7
+class KsrcMigrations {
8
+ @ChangeSet(
9
+ order = "001",
10
+ id = "001_add_ksrc_candidate",
11
+ author = "respawn-app"
12
+ )
13
+ def migration001(implicit db: MongoDatabase) =
14
+ Candidate(
15
+ candidate = "ksrc",
16
+ name = "ksrc",
17
+ description = "Let your AI agents search and read 3rd-party Kotlin dependency sources",
18
+ websiteUrl = "https://github.com/respawn-app/ksrc",
19
+ distribution = "PLATFORM_SPECIFIC"
20
+ ).insert()
21
+}
0 commit comments