当前位置: 首页 > 知识库问答 >
问题:

无法执行目标Maven/Eclipse

宗涵蓄
2023-03-14

好的,我是Maven和Eclipse的新手,我必须运行一个现有的项目。我试图使用命令eclipse:eclipse-Dwtpversion=2.0,但它显示了以下错误:

[INFO]添加对WTP版本2.0的支持。
[INFO]使用Eclipse工作区:null
[INFO]添加默认类路径容器:org.eclipse.jdt.launching.JRE_CONTAINER
[INFO] ------------------------------------------------------------------------
[INFO]构建失败
[INFO] ------------------------------------------------------------------------
[信息]总时间: 17.261 s
[信息]完成时间: 2018-04-05T10:36:20-03:00
[信息]最终记忆:9M/88M
[信息]-----------------------------------------------------------------------
[ERROR]执行目标org.apache.maven.plugins失败:maven-eclipse-插件: 2.9: eclipse(default-cli)在项目核心框架:目标org.apache.maven.plugins的执行default-cli: maven-eclipse-plugin: 2.9: eclipse失败:对于工件{null: null: null: jar}: group pId不能为空。-

在这个问题上,我尝试了所有可能的解决方案,但都没有奏效。我的POM是:

<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>br.com.empresa1</groupId>
    <artifactId>e1-framework-utils</artifactId>
    <version>1.1.0</version>
    <packaging>jar</packaging>

    <name>e1-framework-utils</name>
    <url>http://maven.apache.org</url>

    <repositories>
        <repository>
            <id>pentaho-releases</id>
            <url>http://repository.pentaho.org/artifactory/repo/</url>
        </repository>
    </repositories>



    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <version.log4j>2.8.2</version.log4j>
        <version.html" target="_blank">junit>4.12</version.junit>
        <version.commonslang>3.3.2</version.commonslang>
        <version.freemaker>2.3.23</version.freemaker>
        <version.resteasey-multipart>3.0.11.Final</version.resteasey-multipart>
        <version.commonscollections>3.2.2</version.commonscollections>
        <version.zip4j>1.3.2</version.zip4j>

        <version.core-framerwork>2.2.0</version.core-framerwork>
        <!--  <version.test-core-framerwork>2.2.0</version.test-core-framerwork>-->
    </properties>

    <profiles>
        <profile>
            <id>sonar</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <properties>
                <!-- Optional URL to server. Default value is http://localhost:9000 -->
                <sonar.host.url>
                    http://localhost:9000
                </sonar.host.url>
            </properties>
        </profile>
    </profiles>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-eclipse-plugin</artifactId>
                <version>2.9</version>
                <configuration>
                    <!-- Always download and attach dependencies source code -->
                    <!--  <downloadSources>false</downloadSources>
                    <downloadJavadocs>false</downloadJavadocs>-->
                    <!-- Avoid type mvn eclipse:eclipse -Dwtpversion=2.0 -->
                    <wtpversion>2.0</wtpversion>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <compilerVersion>1.7</compilerVersion>
                    <source>1.7</source>
                    <target>1.7</target>
                    <testSource>1.7</testSource>
                    <testTarget>1.7</testTarget>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.sonarsource.scanner.maven</groupId>
                <artifactId>sonar-maven-plugin</artifactId>
                <version>3.0.1</version>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>${version.junit}</version>
        </dependency>

        <dependency>
            <groupId>br.com.empresa1</groupId>
            <artifactId>core-framework</artifactId>
            <version>${version.core-framerwork}</version>
        </dependency>

        <dependency>
            <groupId>org.apache.logging.log4j</groupId>
            <artifactId>log4j-core</artifactId>
            <version>${version.log4j}</version>
        </dependency>

        <dependency>
            <groupId>org.freemarker</groupId>
            <artifactId>freemarker</artifactId>
            <version>${version.freemaker}</version>
        </dependency>

        <dependency>
            <groupId>org.jboss.resteasy</groupId>
            <artifactId>resteasy-multipart-provider</artifactId>
            <version>${version.resteasey-multipart}</version>
        </dependency>

        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>${version.commonslang}</version>
        </dependency>

        <dependency>
            <groupId>commons-collections</groupId>
            <artifactId>commons-collections</artifactId>
            <version>${version.commonscollections}</version>
        </dependency>

        <!--  <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.0</version>
        </dependency>
        <dependency>
            <groupId>commons-collections</groupId>
            <artifactId>commons-collections</artifactId>
            <version>3.2.2</version>
        </dependency>-->

        <dependency>
            <groupId>net.lingala.zip4j</groupId>
            <artifactId>zip4j</artifactId>
            <version>1.3.2</version>
        </dependency>


    </dependencies>
</project>

任何帮助都是有用的

共有1个答案

卢鸿博
2023-03-14

正如@JFMeier在评论中所说的,eclipse:eclipse命令现在已经不推荐使用了。

要更新项目,请右键单击项目,选择Maven-

那就行了。

 类似资料:
  • 我一直在尝试重命名tika应用程序类。由于类路径上的重复类,存在加载冲突。当我尝试运行maven install-e时,它会抛出错误,我想使用 Apache.Tika组织 分类为 com.test1.tika pom.xml文件如下所示 mvn package命令的错误如下: null

  • 我使用GrailsCreatePOM将我的Grails应用程序转换为Maven项目 我希望创建一个war并执行mvn干净编译安装 波姆。xml 在创建战争期间,我得到以下错误 [错误]无法执行目标组织。grails:grails-maven插件:2.4.4:projectcds上的maven-grails-appwar(默认的maven-grails-appwar):执行目标组织的默认maven-

  • 我不明白为什么在我的新项目mvn spring-boot:run中会出现这样一个错误我在执行命令时会出现这个错误 错误:无法执行目标org.springframework.boot:spring-boot-maven-plugin:2.1.0。release:run(default-cli)on project spring5webapp:运行时出现异常。空 pom.xml

  • 目前,我正在使用Smoks(1.5版本)。在最后一步中,我更改了项目中的包的名称,并引发了以下错误: 无法在项目javaBindings上执行目标org.codehaus.mojo:exec-maven-plugin:1.2.1:exec(default-cli):命令执行失败。进程退出,出现错误:1(退出值:1)->[帮助1]

  • 有关错误和可能的解决方案的更多信息,请阅读以下文章:http://cwiki.apache.org/confluence/display/maven/mojoExecutionException

  • > 我的pom.xml 我添加了一些依赖项和插件,任何人都可以帮助我?? http://maven.apache.org/xsd/maven-4.0.0.xsd“>4.0.0