maven编译错误maven-assembly-plugin:2.2-beta-5:assembly (default-cli) on project

maven对项目编译时报错

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-assembly-plugin:2.2-beta-5:assembly (default-cli) on project video: Error reading assemblies: No assembly descriptors found. -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

因为pom.xml中缺少

<plugin>
  <artifactId>maven-assembly-plugin</artifactId>
  <configuration>
    <archive>
      <manifest>
        <mainClass>com.test.MainClassName</mainClass>
      </manifest>
    </archive>
    <descriptorRefs>
      <descriptorRef>jar-with-dependencies</descriptorRef>
    </descriptorRefs>
  </configuration>
  <executions>
    <execution>
      <id>make-assembly</id> 
      <phase>package</phase>
      <goals>
        <goal>single</goal>
      </goals>
    </execution>
  </executions>
</plugin>

添加上之后成功编译

转载于:https://www.cnblogs.com/timeTraveler/p/10002398.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
这个错误提示表明 Maven 没有找到任何装配描述符。在使用 maven-assembly-plugin 时,必须在项目的 pom.xml 文件中配置相应的描述符,才能生成期望的装配包。如果您没有提供描述符,那么您需要提供一个默认的描述符。 您可以通过在 pom.xml 文件中添加以下配置来提供一个默认的描述符: ```xml <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.2-beta-5</version> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <archive> <manifest> <mainClass>com.example.MainClass</mainClass> </manifest> </archive> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> ``` 在这个示例中,我们指定了 `jar-with-dependencies` 描述符,它将生成一个包含所有依赖项的可执行 JAR 文件。请注意,这里还指定了一个 `mainClass`,用于指定可执行 JAR 的入口类。 如果您想使用自定义的描述符,您需要在 `<configuration>` 标签中指定 `descriptor` 元素,例如: ```xml <configuration> <descriptors> <descriptor>assembly.xml</descriptor> </descriptors> </configuration> ``` 在这个示例中,我们使用 `assembly.xml` 作为描述符文件的名称。请确保该文件位于项目的根目录或相对路径下,并包含正确的装配信息。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值