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

coursier.cli.publish.version.Options.scala Maven / Gradle / Ivy

There is a newer version: 2.1.13
Show newest version
package coursier.cli.publish.version

import caseapp._

final case class Options(
  @HelpMessage("Check if the current version is a snapshot one")
    isSnapshot: Boolean = false,
  @Name("q") // hmm, doesn't work
    quiet: Boolean = false
)

object Options {
  implicit val parser = Parser[Options]
  implicit val help = caseapp.core.help.Help[Options]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy