Skip to content

Instantly share code, notes, and snippets.

@orangeclover
Created October 26, 2013 07:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save orangeclover/7166398 to your computer and use it in GitHub Desktop.
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
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