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

scala.cli.commands.shared.ScopeOptions.scala Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package scala.cli.commands.shared

import caseapp.*

import scala.cli.commands.tags

case class ScopeOptions(
  @Group(HelpGroup.Compilation.toString)
  @HelpMessage("Include test scope")
  @Tag(tags.should)
  @Tag(tags.inShortHelp)
  @Name("testScope")
  @Name("withTestScope")
  @Name("withTest")
  test: Boolean = false
)
object ScopeOptions {
  implicit lazy val parser: Parser[ScopeOptions] = Parser.derive
  implicit lazy val help: Help[ScopeOptions]     = Help.derive
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy