Skip to content

Commit fa6c054

Browse files
committed
Removing mortbay from pom.xml
1 parent 33b3d97 commit fa6c054

File tree

3 files changed

+107
-72
lines changed

3 files changed

+107
-72
lines changed

obp-api/pom.xml

Lines changed: 24 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -478,9 +478,9 @@
478478
<artifactId>java-scriptengine</artifactId>
479479
<version>2.0.0</version>
480480
</dependency>
481-
<!--
481+
<!--
482482
Java Client for ORY Hydra
483-
https://github.com/ory/hydra-client-java
483+
https://github.com/ory/hydra-client-java
484484
-->
485485
<dependency>
486486
<groupId>sh.ory.hydra</groupId>
@@ -632,14 +632,28 @@
632632
</execution>
633633
</executions>
634634
</plugin>
635-
<plugin>
636-
<groupId>org.mortbay.jetty</groupId>
637-
<artifactId>maven-jetty-plugin</artifactId>
638-
<configuration>
639-
<contextPath>/</contextPath>
640-
<scanIntervalSeconds>5</scanIntervalSeconds>
641-
</configuration>
642-
</plugin>
635+
<plugin>
636+
<groupId>org.eclipse.jetty</groupId>
637+
<artifactId>jetty-maven-plugin</artifactId>
638+
<version>${jetty.version}</version>
639+
<configuration>
640+
<contextPath>/</contextPath>
641+
<scanIntervalSeconds>5</scanIntervalSeconds>
642+
<httpConnector>
643+
<port>8080</port>
644+
</httpConnector>
645+
<systemProperties>
646+
<systemProperty>
647+
<name>org.eclipse.jetty.server.HttpConfiguration.requestHeaderSize</name>
648+
<value>32768</value>
649+
</systemProperty>
650+
<systemProperty>
651+
<name>org.eclipse.jetty.server.HttpConfiguration.responseHeaderSize</name>
652+
<value>32768</value>
653+
</systemProperty>
654+
</systemProperties>
655+
</configuration>
656+
</plugin>
643657
<plugin>
644658
<groupId>org.apache.maven.plugins</groupId>
645659
<artifactId>maven-idea-plugin</artifactId>

0 commit comments

Comments
 (0)