Skip to content

Instantly share code, notes, and snippets.

View hellodk34's full-sized avatar
🎯
Focusing

Allen Hua hellodk34

🎯
Focusing
View GitHub Profile
@hellodk34
hellodk34 / md
Last active April 6, 2022 07:45
普通 maven 项目打包,将第三方依赖和程序本体打进一个 jar 包
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>