如何用Gradle运营Jetty
我有一个Gradle项目,我正试着用它来运行它,Jetty。
我的build.gradle
文件如下所示。
build.gradle
apply plugin: 'java'
apply plugin: 'war'
apply plugin: 'jetty'
[jettyRun, jettyRunWar]*.httpPort = 8080
[jettyRun, jettyRunWar]*.contextPath = ''
[jettyRun, jettyRunWar]*.daemon = true
[jettyRun, jettyRunWar, jettyStop]*.stopPort = 8081
[jettyRun, jettyRunWar, jettyStop]*.stopKey = 'stop'
repositories {
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceSets {
test {
java {
srcDirs = ['src/test/java']
}
}
}
dependencies {
compile 'org.glassfish.jersey.containers:jersey-container-servlet:2.14'
compile 'org.glassfish.jersey.media:jersey-media-json-jackson:2.14'
compile 'com.google.guava:guava:14.0.1'
testCompile 'junit:junit:4.12'
testCompile 'org.hamcrest:hamcrest-all:1.3'
testCompile 'org.mockito:mockito-all:1.10.19'
testCompile 'org.eclipse.jetty:jetty-server:9.4.7.v20170914'
testCompile 'org.eclipse.jetty:jetty-webapp:9.4.7.v20170914'
}
我尝试从命令行运行此项目,我使用的命令是:
Jetty插件已弃用,计划在Gradle 4.0中删除。考虑改用Gretty(https://github.com/akhikhl/gretty)插件。 在build_6xw4u3prr68h02k136x2vqowd.run(/myproject/build.gradle:3) :帮助./gradlew
应该构建哪个项目,并输出以下内容:欢迎使用Gradle 3.2.1。
gradle jettyRun
失败,找不到ID为‘jetty’的语句插件。
解决方案
我不是Gradle方面的专家,只是初学者,但我想我找到了一些可以帮助您的东西。 我还读到有关在Gradle中使用Jetty的内容,因为我经常在Maven中使用它。
原来,不再支持Jetty作为插件,您可以在这里找到:https://docs.gradle.org/current/userguide/jetty_plugin.html
相反,您应该使用Gretty实现相同的目的: https://plugins.gradle.org/plugin/org.gretty希望这对您有帮助。
相关文章