diff options
-rw-r--r-- | PyPDPServer/pom.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/PyPDPServer/pom.xml b/PyPDPServer/pom.xml index f06edb1fc..6c2a73bdf 100644 --- a/PyPDPServer/pom.xml +++ b/PyPDPServer/pom.xml @@ -215,6 +215,28 @@ </dependency> </dependencies> + <build> + <plugins> + <plugin> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-maven-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>repackage</goal> + </goals> + <phase>none</phase> + </execution> + </executions> + </plugin> + <plugin> + <artifactId>maven-war-plugin</artifactId> + <configuration> + <packagingExcludes>WEB-INF/lib/javax.websocket-api-1.1.jar</packagingExcludes> + </configuration> + </plugin> + </plugins> + </build> <!-- <build> <plugins> |