ClasspathHelper

replpp.util.ClasspathHelper

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

Type members

Classlikes

case class JarWithManifestInfo(jar: Path, organisation: Option[String], name: Option[String], version: Option[String])

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Value members

Concrete methods

def create(config: Config, quiet: Boolean): String

Concatenates the classpath from multiple sources, each are required for different scenarios:

Concatenates the classpath from multiple sources, each are required for different scenarios:

  • java.class.path system property
  • dependency artifacts as passed via (command-line) configuration
  • jars from current class loader (recursively)

To have reproducable results, we order the classpath entries. This may interfere with the user's deliberate choice of order, but since we need to concatenate the classpath from different sources, the user can't really depend on the order anyway.

Attributes