解决:single failed: For artifact {null:null:null:jar}: The groupId cannot be empty. 把工程依赖的jar包打到入jar中
Posted 微风--轻许--
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决:single failed: For artifact {null:null:null:jar}: The groupId cannot be empty. 把工程依赖的jar包打到入jar中相关的知识,希望对你有一定的参考价值。
前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到教程。
1. 执行 mvn clean install 报错:
Execution make-assembly of goal org.apache.maven.plugins:maven-assembly-plugin:2.4.1:single failed: For artifact null:null:null:jar: The groupId cannot be empty.
2. 我只是想把工程依赖的jar包打到 最后的jar包中。
pom 中加上配置,会生成2个 jar ,用带有依赖的那个 jar 就行。( 如下文中的xxx-0.0.1-SNAPSHOT-jar-with-dependencies.jar )
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id> <!-- this is used for inheritance merges -->
<phase>package</phase> <!-- bind to the packaging phase -->
<goals>
<goal>singles</goal>
</goals>
</execution>
</executions>
</plugin>
3. 特别注意:版本一定要是3.3.0,或者查官网找最新文档中的版本。我之前用的是2.4.1,就一直报如题的错。
只是改为官方文档上的版本就可。文档地址:http://maven.apache.org/plugins/maven-assembly-plugin/usage.html
生成的jar 如:
以上是关于解决:single failed: For artifact {null:null:null:jar}: The groupId cannot be empty. 把工程依赖的jar包打到入jar中的主要内容,如果未能解决你的问题,请参考以下文章
fatal: Authentication failed for码云的解决办法
Job for named.service failed 解决方法
解决:fatal: authentication failed for https
Error:Execution failed for task app怎么解决