Skip to content

Commit

Permalink
Add dependency-watch candidate (#685)
Browse files Browse the repository at this point in the history
  • Loading branch information
eygraber authored Apr 30, 2024
1 parent c5084f0 commit 690f1cf
Showing 1 changed file with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
package io.sdkman.changelogs

import com.github.mongobee.changeset.{ChangeLog, ChangeSet}
import com.mongodb.client.MongoDatabase

@ChangeLog(order = "086")
class DependencyWatchMigrations {
@ChangeSet(
order = "001",
id = "001_add_dependency_watch_candidate",
author = "eygraber"
)
def migration001(implicit db: MongoDatabase) =
Candidate(
candidate = "dependency-watch",
name = "dependency-watch",
description =
"dependency-watch is a script that waits for an artifact to appear in a Maven repository or to monitor coordinates for new versions.",
websiteUrl = "https://github.com/eygraber/dependency-watch-sdkman"
).insert()
}

0 comments on commit 690f1cf

Please sign in to comment.