Packages

package sbt

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Value Members

  1. object SbtNativePackager extends AutoPlugin

    This is the top level plugin for the sbt native packager.

    SBT Native Packager Plugin

    This is the top level plugin for the sbt native packager. You don't have to enable this by yourself, instead we recommend using an archetype for this.

    Currently you can choose between

    • JavaAppPackaging
    • JavaServerPackaging
    • AkkaAppPackging

    Configuration

    The are a few settings you should set if you want to build package no matter what format.

    maintainer := "Your name <[email protected]>"
    packageDescription := "A short description of your application"

    For all other general settings take a look at com.typesafe.sbt.packager.NativePackagerKeys

    Example:
    1. Enable the plugin in the build.sbt

      enablePlugins(SbtNativePackager)

Ungrouped