jorgeortiz85 / sbt-stax-plugin

SBT Plugin to deploy to stax.net

Home Page:http://timperrett.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Stax SBT Plugin

Integration for SBT that lets you deploy apps to stax.net

Usage

Define the plugin information in your Plugins.scala


  class Plugins(info: ProjectInfo) extends PluginDefinition(info) {
    val stax = "eu.getintheloop" % "sbt-stax-plugin" % "1.0"
    // repos
    val staxReleases = "stax-release-repo" at "http://mvn.stax.net/content/repositories/public"
  }

Add the stax plugin to your SBT project


  class LiftTravelProject(info: ProjectInfo) 
      extends DefaultWebProject(info) 
      with stax.StaxPlugin {
        ....
        // stax
        override def staxApplicationId = "whatever"
        override def staxUsername = "youruser"
        // leave out and you'll be prompted at deploy time
        // override def staxPassword = "password"
      }

About

SBT Plugin to deploy to stax.net

http://timperrett.com


Languages

Language:Scala 100.0%