Eclipse Maven错误:Pom编辑器中的org.apache.maven.plugin.jar.JarMojo错误 [英] Eclipse Maven Error: org.apache.maven.plugin.jar.JarMojo error from pom editor

查看:303
本文介绍了Eclipse Maven错误:Pom编辑器中的org.apache.maven.plugin.jar.JarMojo错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试从eclipse创建一个新的Maven项目.我最终在pom.xml中遇到此错误.

I am trying to create a new Maven project from eclipse. I end up with this error in my pom.xml.

org.apache.maven.plugin.jar.JarMojo

我试图四处张望.我发现了一个stackoverflow问题如何从pom编辑器中删除org.apache.maven.plugin.jar.JarMojo错误 但是我无法摆脱这个错误.

I have tried to look everywhere. I found a stackoverflow question How to remove org.apache.maven.plugin.jar.JarMojo error from pom editor But i was not able to get rid of this error.

有人可以帮我吗?

如果我问傻话,我真的很抱歉.但是我完全被困住了.可能是我缺少了一些东西. 我正在使用Maven 3.0.5

I am really sorry if I am asking something silly. But I am completely stuck. May be I am missing something. I am using Maven 3.0.5

这是我的pom.xml

This is my pom.xml

<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>123</groupId>
  <artifactId>test</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <name>test name</name>
  <description>test desc</description>
  <repositories>
    <repository>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
      <id>central</id>
      <name>Central Repository</name>
      <url>http://repo.maven.apache.org/maven2</url>
    </repository>
  </repositories>
  <pluginRepositories>
    <pluginRepository>
      <releases>
        <updatePolicy>never</updatePolicy>
      </releases>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
      <id>central</id>
      <name>Central Repository</name>
      <url>http://repo.maven.apache.org/maven2</url>
    </pluginRepository>
  </pluginRepositories>
  <build>
    <sourceDirectory>C:\harish\RestApi\spring-jersey\test\src\main\java</sourceDirectory>
    <scriptSourceDirectory>C:\harish\RestApi\spring-jersey\test\src\main\scripts</scriptSourceDirectory>
    <testSourceDirectory>C:\harish\RestApi\spring-jersey\test\src\test\java</testSourceDirectory>
    <outputDirectory>C:\harish\RestApi\spring-jersey\test\target\classes</outputDirectory>
    <testOutputDirectory>C:\harish\RestApi\spring-jersey\test\target\test-classes</testOutputDirectory>
    <resources>
      <resource>
        <directory>C:\harish\RestApi\spring-jersey\test\src\main\resources</directory>
      </resource>
    </resources>
    <testResources>
      <testResource>
        <directory>C:\harish\RestApi\spring-jersey\test\src\test\resources</directory>
      </testResource>
    </testResources>
    <directory>C:\harish\RestApi\spring-jersey\test\target</directory>
    <finalName>test-0.0.1-SNAPSHOT</finalName>
    <pluginManagement>
      <plugins>
        <plugin>
          <artifactId>maven-antrun-plugin</artifactId>
          <version>1.3</version>
        </plugin>
        <plugin>
          <artifactId>maven-assembly-plugin</artifactId>
          <version>2.2-beta-5</version>
        </plugin>
        <plugin>
          <artifactId>maven-dependency-plugin</artifactId>
          <version>2.1</version>
        </plugin>
        <plugin>
          <artifactId>maven-release-plugin</artifactId>
          <version>2.0</version>
        </plugin>
      </plugins>
    </pluginManagement>
    <plugins>
      <plugin>
        <artifactId>maven-clean-plugin</artifactId>
        <version>2.4.1</version>
        <executions>
          <execution>
            <id>default-clean</id>
            <phase>clean</phase>
            <goals>
              <goal>clean</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-install-plugin</artifactId>
        <version>2.3.1</version>
        <executions>
          <execution>
            <id>default-install</id>
            <phase>install</phase>
            <goals>
              <goal>install</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-resources-plugin</artifactId>
        <version>2.5</version>
        <executions>
          <execution>
            <id>default-resources</id>
            <phase>process-resources</phase>
            <goals>
              <goal>resources</goal>
            </goals>
          </execution>
          <execution>
            <id>default-testResources</id>
            <phase>process-test-resources</phase>
            <goals>
              <goal>testResources</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.10</version>
        <executions>
          <execution>
            <id>default-test</id>
            <phase>test</phase>
            <goals>
              <goal>test</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.3.2</version>
        <executions>
          <execution>
            <id>default-testCompile</id>
            <phase>test-compile</phase>
            <goals>
              <goal>testCompile</goal>
            </goals>
          </execution>
          <execution>
            <id>default-compile</id>
            <phase>compile</phase>
            <goals>
              <goal>compile</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <version>2.3.2</version>
        <executions>
          <execution>
            <id>default-jar</id>
            <phase>package</phase>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-deploy-plugin</artifactId>
        <version>2.7</version>
        <executions>
          <execution>
            <id>default-deploy</id>
            <phase>deploy</phase>
            <goals>
              <goal>deploy</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-site-plugin</artifactId>
        <version>3.0</version>
        <executions>
          <execution>
            <id>default-site</id>
            <phase>site</phase>
            <goals>
              <goal>site</goal>
            </goals>
            <configuration>
              <outputDirectory>C:\harish\RestApi\spring-jersey\test\target\site</outputDirectory>
              <reportPlugins>
                <reportPlugin>
                  <groupId>org.apache.maven.plugins</groupId>
                  <artifactId>maven-project-info-reports-plugin</artifactId>
                </reportPlugin>
              </reportPlugins>
            </configuration>
          </execution>
          <execution>
            <id>default-deploy</id>
            <phase>site-deploy</phase>
            <goals>
              <goal>deploy</goal>
            </goals>
            <configuration>
              <outputDirectory>C:\harish\RestApi\spring-jersey\test\target\site</outputDirectory>
              <reportPlugins>
                <reportPlugin>
                  <groupId>org.apache.maven.plugins</groupId>
                  <artifactId>maven-project-info-reports-plugin</artifactId>
                </reportPlugin>
              </reportPlugins>
            </configuration>
          </execution>
        </executions>
        <configuration>
          <outputDirectory>C:\harish\RestApi\spring-jersey\test\target\site</outputDirectory>
          <reportPlugins>
            <reportPlugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-project-info-reports-plugin</artifactId>
            </reportPlugin>
          </reportPlugins>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <reporting>
    <outputDirectory>C:\harish\RestApi\spring-jersey\test\target\site</outputDirectory>
  </reporting>
</project>

更新: 我重新安装了Maven.我没有得到这个例外. 我认为eclipse使用的Maven版本和我下载的版本有问题. 我将其标记为

Update: I re-did the maven installation. I am not getting this exception. I think there was something wrong in the version of maven used by eclipse and the one i downloaded. i will mark this as a duplicate of How to remove org.apache.maven.plugin.jar.JarMojo error from pom editor

推荐答案

删除[user dir]/.m2/repository/org/apache/maven中的所有内容并清理您的项目.

Delete all over [user dir]/.m2/repository/org/apache/maven and clean your projects.

这篇关于Eclipse Maven错误:Pom编辑器中的org.apache.maven.plugin.jar.JarMojo错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆