参考にさせていただいたサイト Executable WARs with Jetty ≪ EclipseSource Blog http://eclipsesource.com/blogs/2009/10/02/executable-wars-with-jetty/ これをGradleで実行するコードがGitHubで配布されてる。 https://github.com/xlson/standalone-war GitHubのコードはJetty 6で作成するものなので、 書き換えてJetty 7で動作させるようにする。 まず、ここを書き換える。 build.gradle dependencies { compile group: 'org.eclipse.jetty', name: 'jetty-webapp', version: '7.2.1.v20101111' } 次に、 Starter