Skip to content

Commit e9e2b89

Browse files
committed
2021/5/6
1 parent b227789 commit e9e2b89

40 files changed

+1975
-14
lines changed

JVM.assets/0-20210506155834139.png

93.5 KB
Loading

JVM.assets/0.png

35.6 KB
Loading
101 KB
Loading
13 KB
Loading
45.7 KB
Loading

JVM.md

+383-12
Large diffs are not rendered by default.
1.23 MB
Loading
Loading
Loading
40.7 KB
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

Spring cloud.assets/maven.md

+55
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,58 @@
5959
</build>
6060
```
6161

62+
63+
64+
65+
66+
```xml
67+
<build>
68+
<plugins>
69+
<plugin>
70+
<groupId>org.apache.maven.plugins</groupId>
71+
<artifactId>maven-jar-plugin</artifactId>
72+
<version>3.0.2</version>
73+
<configuration>
74+
<archive>
75+
<manifest>
76+
<addClasspath>true</addClasspath>
77+
<mainClass>com.cqp.sm9utilsstarter.Sm9UtilsStarterApplication</mainClass>
78+
</manifest>
79+
</archive>
80+
</configuration>
81+
</plugin>
82+
83+
<plugin>
84+
<groupId>org.springframework.boot</groupId>
85+
<artifactId>spring-boot-maven-plugin</artifactId>
86+
<configuration>
87+
<includeSystemScope>true</includeSystemScope>
88+
</configuration>
89+
</plugin>
90+
91+
<plugin>
92+
<artifactId>maven-compiler-plugin</artifactId>
93+
<configuration>
94+
<source>1.8</source>
95+
<target>1.8</target>
96+
<encoding>UTF-8</encoding>
97+
<compilerArguments>
98+
<verbose />
99+
<!-- 将jdk的依赖jar打入项目中,这样项目中使用的jdk的依赖就尅正常使用 -->
100+
<extdirs>${project.basedir}/src/main/resources/META-INF/lib/</extdirs>
101+
102+
</compilerArguments>
103+
</configuration>
104+
</plugin>
105+
</plugins>
106+
<resources>
107+
<resource>
108+
<directory>${project.basedir}/src/main/resources/META-INF/lib/</directory>
109+
<targetPath>BOOT-INF/lib/</targetPath>
110+
<includes>
111+
<include>**/*.jar</include>
112+
</includes>
113+
</resource>
114+
</resources>
115+
</build>
116+
```

0 commit comments

Comments
 (0)