LoginSignup
9
10

More than 5 years have passed since last update.

Grettyが便利そう

Last updated at Posted at 2014-11-10

GradleからJettyを動かすときはJettyEclipse Pluginを使っていたのですが、Jettyのversion upに追随してなかったり、HotDeployされなかったり、ちょこちょこ痒いところに手が届かない。そんなおりGitHubをうろうろして見つけたのがGretty
Jetty7-9だけでなくTomacat7-8にも対応しており、Spring-Loadedを利用したHotDeployもできるようです。しばらく使ってみよう。

pluginのインストールはこんな感じ。

build.gradle
buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'org.akhikhl.gretty:gretty:+'
    }
}

apply plugin: 'org.akhikhl.gretty'
9
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
10