diff options
author | Vitaly Takmazov | 2021-04-12 22:00:11 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2021-04-12 22:00:11 +0300 |
commit | 3e65b5eeaee89758558667787e48a5ab9908a46f (patch) | |
tree | bd4898a257706097996b0fcb0d83c7930e291c12 /pom.xml | |
parent | 43963103bdacecd6943660baa8e4c5b21a490219 (diff) |
ActivityPub: pooling HTTP client
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> |