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

coursier.cli.install.SharedChannelOptions.scala Maven / Gradle / Ivy

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

import caseapp.{HelpMessage => Help, ValueDescription => Value, _}

final case class SharedChannelOptions(

  @Help("Channel for apps")
  @Value("org:name")
    channel: List[String] = Nil,

  @Help("Add default channels")
    defaultChannels: Boolean = true,

  @Help("Add contrib channel")
    contrib: Boolean = false,

  @Help("Add channels read from the configuration directory")
    fileChannels: Boolean = true

)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy