- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 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 版本是最新的,不是吗?
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
<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>
关于maven jetty - org.mortbay.jetty 与 org.eclipse.jetty,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15386461/
本文整理了Java中org.mortbay.xml.XmlConfiguration类的一些代码示例,展示了XmlConfiguration类的具体用法。这些代码示例主要来源于Github/Stack
本文整理了Java中org.mortbay.xml.XmlConfiguration.()方法的一些代码示例,展示了XmlConfiguration.()的具体用法。这些代码示例主要来源于Github
本文整理了Java中org.mortbay.xml.XmlConfiguration.configure()方法的一些代码示例,展示了XmlConfiguration.configure()的具体用法
我在 eclipse RAP(Rich Ajax Platform 1.3.2)和 Java 1.5 版中使用 jetty 6.1.23。我正在向浏览器发送 PNG 图像。这些是导致问题的代码片段:
我正在使用 apache-maven-3.0.5 并且出现以下错误: 错误解决插件'org.mortbay.jetty:jetty-maven-plugin'的版本来自存储库 [本地 (C:\Docu
嗨,我有以下配置。 org.mortbay.jetty jetty-maven-plugin 8.1.3.v20120416 在我的 jetty-env.xml 我有
我正在尝试使用 jetty 来使用 maven 托管一个简单的 helloworld servlet。我很困惑。 我关注了这些 instructions ,但是当我发出 mvn jetty:run ,
我正在尝试使用 maven 构建我的 java 项目。编译时出现以下错误 - package org.mortbay.http does not exist package org.mortbay.j
我在 ZK Web 项目上使用 jetty:run 插件时遇到此错误,我使用的是 zk 原型(prototype)版本 7.0.0。 [ERROR] failed org.mortbay.jetty.
我想按照中所述使用 ssl/https http://docs.codehaus.org/display/JETTY/How+to+configure+SSL 使用jetty-maven-plugin
我在dubbo中使用jetty。当我开始运行jar时,我得到信息(大约0.5秒循环输出): 2018-03-22 17:08:35.830::INFO: Stopped SelectChannelC
我正在开发 YouTube 广播示例 java 程序。我创建了一个从 导入代码的示例程序 https://github.com/youtube/api-samples/tree/master/java
我正在尝试为通常部署到 Tomcat 的应用程序编写一个小型嵌入式 Jetty 程序。我的应用程序似乎初始化正常,但 Jetty 服务器启动后抛出与日志记录相关的错误。我的 src 目录中有一个 lo
当系统插入新记录数据库并更新 solr 索引时,经常会引发此异常,有没有人遇到同样的问题?如何避免呢? Mar 29, 2012 6:26:59 PM org.apache.solr.core.Sol
我通常将 Eclipse IDE 用于 GAE+GWT 项目。 环境:GWT2.1.1,GAE 1.4.0 在 GWT 项目(不含 GAE)中,在项目中使用 GWTTestCase,,, →没问题。运
我无法使用 maven-failsave 验证我的 web 应用程序,因为 web-jetty.xml 引用了一个缺失的 dtd (http://jetty.mortbay.org/configure
这是我的 Ant 目标: 以下是当我以详细模式启动 ant 目标时所得到的结果: >
我一直在尝试为 Jetty 配置 c3p0 db 连接池,但我不断收到 ClassNotFoundException: 2010-03-14 19:32:12.028:WARN::Failed sta
在我的一个项目中,我使用了 Lift 2.5 M4 和 Scala 2.10.0。在这个项目中,我使用 Jetty 8.1.10.v20130312。但是在通过 mvn jetty 运行项目时,出现意
我正在清理使用 Jetty 的产品的构建系统。目前该项目有 javax.servlet.jsp:jsp-api:2.1 作为依赖项。鉴于我正在为我的项目使用 Jetty,我怀疑使用 org.mortb
我是一名优秀的程序员,十分优秀!