JarManifest

mill.util.JarManifest
See theJarManifest companion object
@Scaladoc(value = "/**\n * Represents a JAR manifest.\n *\n * @param main the main manifest attributes\n * @param groups additional attributes for named entries\n */")
final class JarManifest

Represents a JAR manifest.

Value parameters

groups

additional attributes for named entries

main

the main manifest attributes

Attributes

Companion
object
Source
JarManifest.scala
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

def add(entries: (String, String)*): JarManifest

Attributes

Source
JarManifest.scala
def addGroup(group: String, entries: (String, String)*): JarManifest

Attributes

Source
JarManifest.scala
@Scaladoc(value = "/** Constructs a [[java.util.jar.Manifest]] from this JarManifest. */")
def build: Manifest

Constructs a java.util.jar.Manifest from this JarManifest.

Constructs a java.util.jar.Manifest from this JarManifest.

Attributes

Source
JarManifest.scala
override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Any
Source
JarManifest.scala

Concrete fields

val groups: Map[String, Map[String, String]]

Attributes

Source
JarManifest.scala
val main: Map[String, String]

Attributes

Source
JarManifest.scala