diff options
author | Prudence Au <prudence.au@amdocs.com> | 2018-09-20 11:52:30 -0400 |
---|---|---|
committer | Prudence Au <prudence.au@amdocs.com> | 2018-09-20 11:52:30 -0400 |
commit | f8d65028bb25ff774d668873720640bd32b16956 (patch) | |
tree | 13d162741a6daa5c50a8b779f03fd90644bc3ba8 | |
parent | 226ade0702f1df97c18845ef2c2e683c49c661ea (diff) |
Try fixing the start up issue
with old version of javax.ws.rs-api
Change-Id: I7ac8edfb38fd16bc95e0a0562ca37082e0badf04
Signed-off-by: Prudence Au <prudence.au@amdocs.com>
Issue-ID: LOG-648
-rw-r--r-- | pom.xml | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -168,6 +168,14 @@ limitations under the License. <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> + <configuration> + <excludes> + <exclude> + <groupId>javax.ws.rs</groupId> + <artifactId>jsr311-api</artifactId> + </exclude> + </excludes> + </configuration> <executions> <execution> <goals> @@ -186,6 +194,7 @@ limitations under the License. </includes> </resource> </resources> + </build> <profiles> |