All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.kotlin.org.virtuslab.bazelsteward.app.Main.kt Maven / Gradle / Ivy

Go to download

Bazel Steward is a bot that helps you keep your library dependencies, Bazel and Bazel rules up-to-date.

There is a newer version: 1.5.2
Show newest version
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