File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed
Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 2828 </repository >
2929</distributionManagement >
3030</project >
31+ <build >
32+ <plugins >
33+
34+ <plugin ><!-- don't pack the war -->
35+ <groupId >org.apache.maven.plugins</groupId >
36+ <artifactId >maven-war-plugin</artifactId >
37+ <executions >
38+ <execution >
39+ <id >default-war</id >
40+ <phase >none</phase >
41+ </execution >
42+ <execution >
43+ <id >war-exploded</id >
44+ <configuration >
45+ <webappDirectory >target/deploy</webappDirectory >
46+ <archiveClasses >true</archiveClasses >
47+ </configuration >
48+ <phase >prepare-package</phase >
49+ <goals >
50+ <goal >exploded</goal >
51+ </goals >
52+ </execution >
53+ </executions >
54+ </plugin >
55+ <plugin >
56+ <groupId >org.springframework.boot</groupId >
57+ <artifactId >spring-boot-maven-plugin</artifactId >
58+ </plugin >
59+ </plugins >
60+ </build >
61+
62+ </project >
You can’t perform that action at this time.
0 commit comments