前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到教程。
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 如: