Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve docs on deploying different pkg formats #708

Merged
merged 2 commits into from
Dec 4, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
83 changes: 55 additions & 28 deletions src/sphinx/topics/deployment.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ like this in your ``build.sbt``

publishTo := {
val nexus = "https://oss.sonatype.org/"
if (version.value.trim.endsWith("SNAPSHOT"))
Some("snapshots" at nexus + "content/repositories/snapshots")
if (version.value.trim.endsWith("SNAPSHOT"))
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
Expand All @@ -25,37 +25,65 @@ For an automatised build process are other plugins like the `sbt release plugin`
.. _sbt publish documentation: http://www.scala-sbt.org/0.13/docs/Publishing.html
.. _sbt release plugin: https://github.com/sbt/sbt-release

Default Configuration
---------------------
Default Deployment
------------------
The easiest way is to add ``UniversalDeployPlugin`` to your ``build.sbt``

.. code-block:: scala

import NativePackagerKeys._

enablePlugins(JavaServerAppPackaging, UniversalDeployPlugin)


You are now able to publish your application by scope.
You are now able to publish your packaged application in both ``tgz`` and ``zip`` formats with:

``universal:publish``
Publish the ``zip`` (or ``tgz``/``txz`` depending on the configuration. Default is to publish ``zip`` along with ``tgz``) package

``debian:publish``
Publish jars along with the ``deb`` package
Custom Deployments
------------------
When using other package formats we need to explicitly configure the
deployment setup to a more specific one.

``rpm:publish``
Publish jars along with the ``rpm`` package

``windows:publish``
Publish jars along with the ``msi`` package
RPM
~~~

``universal:publish``
Publish jars along with the ``zip`` (or ``tgz``/``txz`` depending on the configuration) package

Your ``build.sbt`` should contain:

.. code-block:: scala
enablePlugins(RpmPlugin, RpmDeployPlugin)

This will make possible to push the ``RPM`` with:

```sbt rpm:publish``

Debian
~~~~~~

Enabled with:

.. code-block:: scala
enable(DebianPlugin, DebianDeployPlugin)

that will make possible to publish a ``deb`` package with:

Custom Configuration
--------------------
You configure only what you need as well.
``sbt deb:publish``

Windows
~~~~~~~

If using an ``msi`` packaging you need to enable:

.. code-block:: scala
enable(WindowsPlugin, WindowsDeployPlugin)

Then, pushing the package is

``sbt windows:publish``

Custom Configurations
---------------------
You could configure only what you need as well.


Debian
Expand All @@ -64,7 +92,7 @@ Debian
.. code-block:: scala

makeDeploymentSettings(Debian, packageBin in Debian, "deb")

//if you want a changes file as well
makeDeploymentSettings(Debian, genChanges in Debian, "changes")

Expand All @@ -74,27 +102,26 @@ RPM
.. code-block:: scala

makeDeploymentSettings(Rpm, packageBin in Rpm, "rpm")

Windows
~~~~~~~

.. code-block:: scala

makeDeploymentSettings(Windows, packageBin in Windows, "msi")
makeDeploymentSettings(Windows, packageBin in Windows, "msi")

Universal
~~~~~~~~~

.. code-block:: scala

// zip
// zip
makeDeploymentSettings(Universal, packageBin in Universal, "zip")

makeDeploymentSettings(UniversalDocs, packageBin in UniversalDocs, "zip")

// additional tgz
addPackage(Universal, packageZipTarball in Universal, "tgz")

// additional txz
addPackage(UniversalDocs, packageXzTarball in UniversalDocs, "txz")