Skip to content

Commit 59805a4

Browse files
lwronskimarc0der
authored andcommitted
Add Coursier candidate
1 parent 41134f5 commit 59805a4

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
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 = "076")
7+
class CoursierMigrations {
8+
@ChangeSet(
9+
order = "001",
10+
id = "001_add_coursier_candidate",
11+
author = "lwronski"
12+
)
13+
def migration001(implicit db: MongoDatabase) =
14+
Candidate(
15+
candidate = "coursier",
16+
name = "Coursier",
17+
description =
18+
"Coursier is the Scala application and artifact manager. It can install Scala applications and setup your Scala development environment. It can also download and cache artifacts from the web.",
19+
websiteUrl = "https://get-coursier.io"
20+
).insert()
21+
}

0 commit comments

Comments
 (0)