在maven jetty插件中找不到包

时间:2009-09-18 10:03:49

标签: java maven-2 jetty maven-plugin

当我尝试运行jetty maven插件(mvn jetty:run)时,我收到了这个错误:

[ERROR] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Compilation failure

D:\projects\Projekt\src\main\java\Runner.java:[18,22] package org.apache.uima does not exist

这个包使用Runner类,似乎没有找到,我该如何添加呢? 我曾尝试使用< webAppConfig>,但它没有帮助......

2 个答案:

答案 0 :(得分:2)

Update2:Uima现在可以在公开的Maven仓库中使用,无需配置您的存储库列表。

更新:Apache的m2 http://people.apache.org/repo/m2-incubating-repository上提供了Uima 。您需要将设置配置为reference the repository并将依赖项添加到您的pom。

uima-core的依赖关系如下:

<dependency>
  <groupId>org.apache.uima</groupId>
  <!--note there are several other uima jars you may want to reference-->
  <artifactId>uimaj-core</artifactId>
  <version>2.4.0</version>
</dependency>

答案 1 :(得分:0)

        <plugin>
          <groupId>org.eclipse.jetty</groupId>
            <artifactId>jetty-maven-plugin</artifactId>
            <version>9.4.5.v20170502</version>
            <configuration>
                <httpConnector>
                    <port>9999</port>
                </httpConnector>
                <webXml>src/main/webapp/WEB-INF/web.xml</webXml>
            </configuration>
        </plugin>