Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions src/main/scala/io/sdkman/changelogs/BoxLang.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package io.sdkman.changelogs

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

@ChangeLog(order = "090")
class BogusMigrations {
@ChangeSet(order = "001", id = "001_add_boxlang", author = "lmajano")
def migration001(implicit db: MongoDatabase) = {
Candidate(
candidate = "boxlang",
name = "BoxLang",
description = "A modern, dynamically and loosely typed scripting language for multiple runtimes.",
websiteUrl = "https://www.boxlang.io/",
distribution = "UNIVERSAL"
).insert()
}
}