aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2021-04-12 22:00:11 +0300
committerGravatar Vitaly Takmazov2021-04-12 22:00:11 +0300
commit3e65b5eeaee89758558667787e48a5ab9908a46f (patch)
treebd4898a257706097996b0fcb0d83c7930e291c12 /pom.xml
parent43963103bdacecd6943660baa8e4c5b21a490219 (diff)
ActivityPub: pooling HTTP client
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml20
1 files changed, 20 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 6325817d..333546b6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>