Packages

final case class JavaEnv(javaHome: AbsolutePath, javaOptions: Array[String]) extends Product with Serializable

The configuration of the Java environment for a given project.

javaHome

Location of the java home. The java binary is expected to be found in $javaHome/bin/java.

javaOptions

The options to pass the JVM when starting.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JavaEnv
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new JavaEnv(javaHome: AbsolutePath, javaOptions: Array[String])

    javaHome

    Location of the java home. The java binary is expected to be found in $javaHome/bin/java.

    javaOptions

    The options to pass the JVM when starting.

Value Members

  1. val javaHome: AbsolutePath
  2. val javaOptions: Array[String]