diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2017-02-20 20:55:53 -0500 |
---|---|---|
committer | Pamela Dragosh <pdragosh@research.att.com> | 2017-02-20 20:56:00 -0500 |
commit | edd493294459d5dd01c785437de9fdc6a269c6d0 (patch) | |
tree | 1b764ba789fd2a0109b133f8f8ac219a643aff83 | |
parent | dd5bc28b51d80bcf6cd7112fd81ae4516d6e7967 (diff) |
bring back spring and war plugins
Change-Id: I4f71f01ac465183a32d92498d566613f77495ebb
Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
-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> |