idea生成maven项目的包含依赖jar包的可执行jar文件

xiaoxiao2021-02-28  125

1、pom.xml文件中插入 <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version> 1.7.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> <resource>META-INF/spring.handlers</resource> </transformer> <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> <resource>META-INF/spring.schemas</resource> </transformer> </transformers> </configuration> </execution> </executions> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> </plugin> </plugins> </build> 2、在maven projects 中对应项目下的Lifecycle双击install,在项目的target目录下生成包含依赖jar包的jar可执行文件。

3、运行指令 java -cp D:\project4d\target\project4d-0.0.1.jar com.**.TestMain main >d:/log.log 执行jar文件

以上已经过测试,另比较常见的插件还有compile

<build>     <plugins>       <plugin>         <groupId>org.apache.maven.plugins</groupId>         <artifactId>maven-compiler-plugin</artifactId>         <version>3.5.1</version>         <configuration>           <source>${maven.compiler.source}</source>           <target>${maven.compiler.target}</target>         </configuration>         <executions>           <execution>             <phase>process-resources</phase>             <id>compile</id>             <goals>               <goal>compile</goal>             </goals>           </execution>         </executions>       </plugin>       <plugin>         <artifactId>maven-assembly-plugin</artifactId>         <executions>           <execution>             <phase>package</phase>             <goals>               <goal>single</goal>             </goals>           </execution>         </executions>         <configuration>           <descriptorRefs>             <descriptorRef>jar-with-dependencies</descriptorRef>           </descriptorRefs>         </configuration>       </plugin>     </plugins>   </build>

记录一下

转载请注明原文地址: https://www.6miu.com/read-20081.html

最新回复(0)