object Archives
Helper methods to package up files into compressed archives.
- Alphabetic
- By Inheritance
- Archives
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
gzip(f: sbt.File): sbt.File
GZips a file.
GZips a file. Returns the new gzipped file. NOTE: This will 'consume' the input file.
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
makeDmg(target: sbt.File, name: String, mappings: Seq[(sbt.File, String)], top: Option[String], options: Seq[String]): sbt.File
Makes a dmg file in the given target directory using the given name.
Makes a dmg file in the given target directory using the given name.
Note: Only works on macOS
- target
folder to build package in
- name
of output (without extension)
- mappings
included in the output
- top
level directory : NOT USED
- options
NOT USED
- returns
dmg file
-
def
makeNativeZip(target: sbt.File, name: String, mappings: Seq[(sbt.File, String)], top: Option[String], options: Seq[String]): sbt.File
Makes a zip file in the given target directory using the given name.
Makes a zip file in the given target directory using the given name.
- target
folder to build package in
- name
of output (without extension)
- mappings
included in the output
- top
level directory
- options
NOT USED
- returns
zip file
-
def
makeTarball(compressor: (sbt.File) ⇒ sbt.File, ext: String)(target: sbt.File, name: String, mappings: Seq[(sbt.File, String)], top: Option[String]): sbt.File
Helper method used to construct tar-related compression functions with
--force-localand-pvcfoption specified as default.Helper method used to construct tar-related compression functions with
--force-localand-pvcfoption specified as default.- target
folder to build package in
- name
of output (without extension)
- mappings
included in the output
- top
level directory
- returns
tar file
-
def
makeTarballWithOptions(compressor: (sbt.File) ⇒ sbt.File, ext: String)(target: sbt.File, name: String, mappings: Seq[(sbt.File, String)], topDirectory: Option[String], options: Seq[String]): sbt.File
Helper method used to construct tar-related compression functions.
Helper method used to construct tar-related compression functions.
- target
folder to build package in
- name
of output (without extension)
- mappings
included in the output
- topDirectory
level directory
- options
for tar command
- returns
tar file
- val makeTgz: (sbt.File, String, Seq[(sbt.File, String)], Option[String], Seq[String]) ⇒ sbt.File
- val makeTxz: (sbt.File, String, Seq[(sbt.File, String)], Option[String], Seq[String]) ⇒ sbt.File
-
def
makeZip(target: sbt.File, name: String, mappings: Seq[(sbt.File, String)], top: Option[String], options: Seq[String]): sbt.File
Makes a zip file in the given target directory using the given name.
Makes a zip file in the given target directory using the given name.
- target
folder to build package in
- name
of output (without extension)
- mappings
included in the output
- top
level directory
- options
NOT USED
- returns
zip file
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
xz(f: sbt.File): sbt.File
xz compresses a file.
xz compresses a file. Returns the new xz compressed file. NOTE: This will 'consume' the input file.
Deprecated Value Members
-
def
makeDmg(target: sbt.File, name: String, mappings: Seq[(sbt.File, String)], top: Option[String]): sbt.File
Makes a dmg file in the given target directory using the given name.
Makes a dmg file in the given target directory using the given name.
Note: Only works on macOS
- target
folder to build package in
- name
of output (without extension)
- mappings
included in the output
- top
level directory : NOT USED
- returns
dmg file
- Annotations
- @deprecated
- Deprecated
(Since version 1.0.5) Use File, name: String, mappings: Seq[(File, String)], top: Option[String], options: Seq[String]): File
-
def
makeNativeZip(target: sbt.File, name: String, mappings: Seq[(sbt.File, String)], top: Option[String]): sbt.File
Makes a zip file in the given target directory using the given name.
Makes a zip file in the given target directory using the given name.
- target
folder to build package in
- name
of output (without extension)
- mappings
included in the output
- top
level directory
- returns
zip file
- Annotations
- @deprecated
- Deprecated
(Since version 1.0.5) Use String, Seq[(File, String)], Option[String], Seq[String]): File
-
def
makeZip(target: sbt.File, name: String, mappings: Seq[(sbt.File, String)], top: Option[String]): sbt.File
Makes a zip file in the given target directory using the given name.
Makes a zip file in the given target directory using the given name.
- target
folder to build package in
- name
of output (without extension)
- mappings
included in the output
- top
level directory
- returns
zip file
- Annotations
- @deprecated
- Deprecated
(Since version 1.0.5) Use String, Seq[(File, String)], Option[String], Seq[String]): File