main.kotlin.org.virtuslab.bazelsteward.app.Main.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bazel-steward Show documentation
Show all versions of bazel-steward Show documentation
Bazel Steward is a bot that helps you keep your library dependencies, Bazel and Bazel rules up-to-date.
package org.virtuslab.bazelsteward.app
import kotlinx.coroutines.runBlocking
import mu.KotlinLogging
import org.virtuslab.bazelsteward.core.Environment
private val logger = KotlinLogging.logger {}
class Main {
companion object {
@JvmStatic
fun main(args: Array) {
logger.info { args.toList() }
runBlocking {
AppBuilder.fromArgs(args, Environment.system).run()
}
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy