diff options
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -45,6 +45,16 @@ <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-undertow</artifactId> + <exclusions> + <exclusion> + <groupId>io.undertow</groupId> + <artifactId>undertow-websockets-jsr</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> @@ -67,6 +77,7 @@ <dependency> <groupId>net.sourceforge.htmlunit</groupId> <artifactId>htmlunit</artifactId> + <scope>test</scope> <exclusions> <exclusion> <groupId>xml-apis</groupId> @@ -175,6 +186,7 @@ <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.2</version> + <scope>provided</scope> </dependency> <dependency> <groupId>com.kotcrab.remark</groupId> @@ -251,6 +263,14 @@ <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> + <configuration> + <excludes> + <exclude> + <groupId>com.google.code.findbugs</groupId> + <artifactId>jsr305</artifactId> + </exclude> + </excludes> + </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> |