Skip to content

Commit

Permalink
fix jetty-server
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexkun committed Apr 29, 2024
1 parent 8d620ee commit 27d23d3
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@
<mysql.connector.version>5.1.47</mysql.connector.version>
<validation.api.version>2.0.1.Final</validation.api.version>
<xstream.version>1.4.20</xstream.version>
<jetty-server.version>9.4.54.v20240208</jetty-server.version>
</properties>


Expand Down
20 changes: 20 additions & 0 deletions streamis-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,26 @@
<artifactId>snakeyaml</artifactId>
<groupId>org.yaml</groupId>
</exclusion>
<exclusion>
<artifactId>jetty-server</artifactId>
<groupId>org.eclipse.jetty</groupId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>${jetty-server.version}</version>
<exclusions>
<exclusion>
<artifactId>jetty-http</artifactId>
<groupId>org.eclipse.jetty</groupId>
</exclusion>
<exclusion>
<artifactId>jetty-io</artifactId>
<groupId>org.eclipse.jetty</groupId>
</exclusion>
</exclusions>
</dependency>

Expand Down

0 comments on commit 27d23d3

Please sign in to comment.