2017-02-23 462 views
0

我有这个问题,当我试图运行我的项目。我尝试运行我的maven项目时出现错误:执行目标失败org.codehaus.mojo:exec-maven-plugin:1.2.1:exec(default-cli)

Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2.1:exec (default-cli) on project projectName: 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.

我使用NetBeans,我用Maven的项目中工作,我的pom.xml看起来是这样的:

<parent> 
    <groupId>org.springframework.boot</groupId> 
    <artifactId>spring-boot-starter-parent</artifactId> 
    <version>1.5.1.RELEASE</version> 
</parent> 

<properties> 
    <java.version>1.8</java.version> 
</properties> 

<dependencies> 
    <!-- https://mvnrepository.com/artifact/org.codehaus.mojo/exec-maven-plugin --> 
    <dependency> 
     <groupId>org.codehaus.mojo</groupId> 
     <artifactId>exec-maven-plugin</artifactId> 
     <version>1.2.1</version> 
    </dependency> 
    <dependency> 
     <groupId>org.springframework.boot</groupId> 
     <artifactId>spring-boot-starter</artifactId> 
    </dependency> 
    <dependency> 
     <groupId>org.springframework</groupId> 
     <artifactId>spring-web</artifactId> 
    </dependency> 
    <dependency> 
     <groupId>com.fasterxml.jackson.core</groupId> 
     <artifactId>jackson-databind</artifactId> 
    </dependency> 
    <dependency> 
     <groupId>org.apache.httpcomponents</groupId> 
     <artifactId>httpclient</artifactId> 
     <version>4.5</version> 
     <type>jar</type> 
    </dependency> 
</dependencies> 


<build> 
    <plugins> 
      <plugin> 
       <groupId>org.codehaus.mojo</groupId> 
       <artifactId>exec-maven-plugin</artifactId> 
       <version>1.2.1</version> 
       <executions> 
        <execution> 
         <goals> 
          <goal>java</goal> 
         </goals> 
        </execution> 
       </executions> 
       <configuration> 
        <mainClass>C:\Users\user\Documents\NetBeansProjects\projectName\src\main\java\com\company\projectName\Application</mainClass> 
       </configuration> 
      </plugin> 

     <plugin> 
      <groupId>org.springframework.boot</groupId> 
      <artifactId>spring-boot-maven-plugin</artifactId> 
     </plugin> 
    </plugins> 
</build> 

我已经试过几件事情,但我解决不了问题,任何人都可以帮助我?

感谢您的帮助:)

回答

0

问题解决了,我有一个问题,在我的另一行代码。 谢谢! :)

相关问题