gpt4 book ai didi

java - 为什么我遇到 org.codehaus.mojo :exec-maven-plugin:1. 2.1 :exec error?

转载 作者:行者123 更新时间:2023-11-29 03:24:54 24 4
gpt4 key购买 nike

我有以下简单的 pom.xml。当我运行该应用程序时,它遇到了以下错误,我阅读了很多关于这个问题的答案,但都没有解决。

    ClientConfig config = new DefaultClientConfig();
Client client = Client.create(config);
WebResource resource = client.resource("Query Request Goes Here");
List<Output> allOutputs = resource.get(new GenericType<List<Output>>(){});
System.out.println(allOutputs.size());



Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2.1:exec (default-cli) on project eBaytest: Command execution failed. Process exited with an error: 1 (Exit value: 1) -> [Help 1]

To see the full stack trace of the errors, re-run Maven with the -e switch.
Re-run Maven using the -X switch to enable full debug logging.

POM.XML

<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.mycompany</groupId>
<artifactId>Test</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>eBaytest</name>
<url>http://maven.apache.org</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-client</artifactId>
<version>1.18</version>
<type>jar</type>
</dependency>
</dependencies>
</project>

最佳答案

看起来您正在尝试使用 Jersey 1.x 建立一个新的 Jersey 项目。我的第一个建议是使用最新的 2.5.1。此外,您肯定希望能够从命令行运行 Maven,因此请先安装它。当你拥有它时,请关注 these instructions建立一个新泽西项目,基本上:

mvn archetype:generate -DarchetypeArtifactId=jersey-quickstart-grizzly2 \
-DarchetypeGroupId=org.glassfish.jersey.archetypes -DinteractiveMode=false \
-DgroupId=com.example -DartifactId=simple-service -Dpackage=com.example \
-DarchetypeVersion=2.5.1

之后,进行更改并运行:

mvn -e compile exec:java

如果您遇到任何错误,您可以返回这里与我们分享。

关于java - 为什么我遇到 org.codehaus.mojo :exec-maven-plugin:1. 2.1 :exec error?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21492712/

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