Config

replpp.Config
See theConfig companion class
object Config

Attributes

Companion
class
Graph
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
Config.type

Members list

Type members

Classlikes

case class ForClasspath(additionalClasspathEntries: Seq[String], inheritClasspath: Boolean, inheritClasspathIncludes: Seq[String], inheritClasspathExcludes: Seq[String], dependencies: Seq[String], resolvers: Seq[String])

Classpath configuration: specify additional dependencies via maven coordinates and resolvers, as well as configure the handling of the inherited classpath (i.e. how we handle the jars that we get from java.class.path system property as well as the current class loaders, recursively).

Classpath configuration: specify additional dependencies via maven coordinates and resolvers, as well as configure the handling of the inherited classpath (i.e. how we handle the jars that we get from java.class.path system property as well as the current class loaders, recursively).

You can either inherit the entire outer classpath via inheritEntireClasspath == true or specify an 'includes list' of regexes for jars to keep. Additionally (in combination with both options) you can specify an 'excludes list' of jars to be excluded. Note that the 'includes list' has a default list ForClasspath.DefaultInheritClasspathIncludes.

Implementation note: the includes and excludes lists use String as the list member type because Regex defines equality etc. differently, which breaks common case class conventions.

Attributes

Companion
object
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
object ForClasspath

Attributes

Companion
class
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type

Inherited and Abstract types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Attributes

Inherited from:
Mirror

Value members

Concrete methods

def parse(args: Array[String]): Config

Concrete fields

lazy val parser: OParser[Unit, Config]