gpt4 book ai didi

maven jetty - org.mortbay.jetty 与 org.eclipse.jetty

转载 作者:行者123 更新时间:2023-12-03 10:28:13 27 4
gpt4 key购买 nike

我正在尝试使用 jetty 来使用 maven 托管一个简单的 helloworld servlet。我很困惑。

我关注了这些 instructions ,但是当我发出 mvn jetty:run ,我收到以下错误:

[ERROR] No plugin found for prefix 'jetty' in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the repositories [local (/Users/abc/.m2/repository), central (http://repo.maven.apache.org/maven2)]

更令人困惑的是,当我在网上搜索示例时,有些是指 org.mortbay.jetty , 和其他人到 org.eclipse.jetty .我以为 Eclipse 版本是最新的,不是吗?

是否有任何文档描述 maven repo 上托管的每个依赖项的内容?意思是?以及如何使用它们?

修改版本号为 9.0.0.v20130308后,我得到一个不同的错误:
Unable to load the mojo 'run' in the plugin 'org.eclipse.jetty:jetty-maven-plugin:9.0.0.v20130308' due to an API incompatibility: org.codehaus.plexus.component.repository.exception.ComponentLookupException: org/eclipse/jetty/maven/plugin/JettyRunMojo : Unsupported major.minor version 51.0

这是我更新的pom:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.neon.research</groupId>
<artifactId>jetty</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>jetty Maven Webapp</name>
<url>http://maven.apache.org</url>
<properties>
<jetty.version></jetty.version>
</properties>
<dependencies>
<dependency>
<groupId>org.eclipse.jetty.orbit</groupId>
<artifactId>javax.servlet</artifactId>
<version>3.0.0.v201112011016</version>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>9.0.0.v20130308</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>jsr14</target>
</configuration>
<executions>
<execution>
<id>test-compile</id>
<phase>process-test-sources</phase>
<goals>
<goal>testCompile</goal>
</goals>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

最佳答案

jetty 移动了很多 - 见History .截至 2009 年,Eclipse 是最新的主页。Maven Artifact 一直在重命名,因此您的搜索正在寻找旧版本的 Jetty 和 maven 插件的文档。

最新(v9) jetty-maven-plugin documentation将依赖项列为:

<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>9.0.0.v20130308</version> <!-- latest at time of writing -->
</plugin>

jetty-continuation 或 jetty-jsp 等其他库只是 Jetty 项目的子模块。 older wiki 上有一些文档。对于 Jetty 7 和 8,但我还看不到 v9 的任何更新。模块化设计是 Jetty 开发人员将他们的代码组织成定义明确的模块,这些模块都已单独提供给可能只想使用 Jetty 的一小部分的开发人员。

关于maven jetty - org.mortbay.jetty 与 org.eclipse.jetty,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15386461/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com