Skip to content

Commit b449f09

Browse files
authored
Update pom.xml
1 parent 752349c commit b449f09

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

pom.xml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,35 @@
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>

0 commit comments

Comments
 (0)