Skip to content

Instantly share code, notes, and snippets.

@orangeclover
Created October 26, 2013 07:34
Show Gist options
  • Select an option

  • Save orangeclover/7166398 to your computer and use it in GitHub Desktop.

Select an option

Save orangeclover/7166398 to your computer and use it in GitHub Desktop.
Gradeを使って配布されているWarファイルをjetty上で動作させる
apply plugin: 'war'
apply plugin: 'jetty'
war {
baseName = 'quickstart'
archiveName = "webapp-quickstart.war"
from 'war'
}
task warRun {
war.enabled = false
dependsOn jettyRunWar
}
httpPort = 8080
stopPort = 9451
stopKey = 'foo'
@orangeclover

Copy link
Copy Markdown
Author

説明を書いてるブログはこちら。
『Gradeを使って配布されているWarファイルをjetty上で動作させる』 http://orangeclover.hatenablog.com/entry/2013/10/26/192952

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment