How to use sbt with Google App Engine?

后端 未结 7 2011
北海茫月
北海茫月 2021-01-31 05:08

Has anybody tried to setup sbt to work with Google App Engine? I dream about using development server auto-reloading after source changes.

7条回答
  •  我在风中等你
    2021-01-31 05:58

    You will find an example by the author of the plugin here: http://gist.github.com/377611

    Especially in the plugins configuration, the setting of 1.1-SNAPSHOT (mentioned above) or 2.1-SNAPSHOT (mentioned in the sbt-apppengine-plugin README) did not work.

    The example shows:

    import sbt._
    
    class Plugins(info: ProjectInfo) extends PluginDefinition(info) {
        val appenginePlugin = "net.stbbs.yasushi" % "sbt-appengine-plugin" % "2.0" from "http://github.com/downloads/Yasushi/sbt-appengine-plugin/sbt-appengine-plugin-2.0.jar"
    }
    

    And this worked for me.

提交回复
热议问题