File tree Expand file tree Collapse file tree 1 file changed +31
-3
lines changed Expand file tree Collapse file tree 1 file changed +31
-3
lines changed Original file line number Diff line number Diff line change 42
42
<scope >test</scope >
43
43
</dependency >
44
44
</dependencies >
45
+
45
46
<build >
46
47
<plugins >
47
48
<plugin >
49
+ <groupId >org.apache.maven.plugins</groupId >
50
+ <artifactId >maven-shade-plugin</artifactId >
51
+ <version >3.1.0</version >
52
+ <executions >
53
+ <execution >
54
+ <phase >package</phase >
55
+ <goals >
56
+ <goal >shade</goal >
57
+ </goals >
58
+ <configuration >
59
+ <artifactSet >
60
+ <includes >
61
+ <include >mysql:mysql-connector-java</include >
62
+ </includes >
63
+ </artifactSet >
64
+ </configuration >
65
+ </execution >
66
+ </executions >
67
+ </plugin >
68
+ <plugin >
69
+ <groupId >org.apache.maven.plugins</groupId >
48
70
<artifactId >maven-compiler-plugin</artifactId >
49
- <version >3.5.1</version >
50
71
<configuration >
51
- <source >1. 8</source >
52
- <target >1. 8</target >
72
+ <source >8</source >
73
+ <target >8</target >
53
74
</configuration >
54
75
</plugin >
55
76
</plugins >
77
+
78
+ <resources >
79
+ <resource >
80
+ <directory >src/main/resources</directory >
81
+ <filtering >true</filtering >
82
+ </resource >
83
+ </resources >
56
84
</build >
57
85
</project >
You can’t perform that action at this time.
0 commit comments