We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cd4fab commit 8994781Copy full SHA for 8994781
springboot-security/pom.xml
@@ -15,7 +15,7 @@
15
</parent>
16
17
<properties>
18
- <start-class>com.us.Application</start-class>
+ <start-class>com.us.example.Application</start-class>
19
<maven.compiler.target>1.8</maven.compiler.target>
20
<maven.compiler.source>1.8</maven.compiler.source>
21
@@ -76,5 +76,23 @@
76
77
78
</dependencies>
79
+ <build>
80
+ <plugins>
81
82
+ <!--<!–打依赖包–>-->
83
+ <plugin>
84
+ <groupId>org.apache.maven.plugins</groupId>
85
+ <artifactId>maven-shade-plugin</artifactId>
86
+ <version>2.3</version>
87
+ <executions>
88
+ <execution>
89
+ <phase>package</phase>
90
+ <goals>
91
+ <goal>shade</goal>
92
+ </goals>
93
+ </execution>
94
+ </executions>
95
+ </plugin>
96
+ </plugins>
97
+ </build>
98
</project>
0 commit comments