Skip to content

Commit 1c59184

Browse files
authored
Add ksrc candidate (#748)
* Add ksrc candidate * Bump ksrc changelog order to 092
1 parent 8a06cc8 commit 1c59184

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)