Skip to content

Commit 690f1cf

Browse files
authored
Add dependency-watch candidate (sdkman#685)
1 parent c5084f0 commit 690f1cf

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 = "086")
7+
class DependencyWatchMigrations {
8+
@ChangeSet(
9+
order = "001",
10+
id = "001_add_dependency_watch_candidate",
11+
author = "eygraber"
12+
)
13+
def migration001(implicit db: MongoDatabase) =
14+
Candidate(
15+
candidate = "dependency-watch",
16+
name = "dependency-watch",
17+
description =
18+
"dependency-watch is a script that waits for an artifact to appear in a Maven repository or to monitor coordinates for new versions.",
19+
websiteUrl = "https://github.com/eygraber/dependency-watch-sdkman"
20+
).insert()
21+
}

0 commit comments

Comments
 (0)