amalakar / sbt-aptly

Scala Sbt plugin to upload debian package to aptly debian repository

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SBT plugin for aptly

A plugin to upload debian packages to aptly debian repo. It works in conjunction with sbt-native-packager

Usage

You need to add the following in your build.sbt. To upload to the aptly debian repository you would want to do sbt assembly debian:packageBin aptly-publish

enablePlugins(AptlyPlugin)

aptlyUrl := "http://aptly.example.net:8080/api"
aptlyPrefix := "analytics_precise"
aptlyDistribution := "precise"
aptlyDebianPackage := baseDirectory.value / s"target/${(name in Debian).value}_${version.value}_${(packageArchitecture in Debian).value}.deb"

About

Scala Sbt plugin to upload debian package to aptly debian repository


Languages

Language:Scala 100.0%