Skip to content

Commit

Permalink
Fixed wrong jetty dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
marcingrzejszczak committed Sep 11, 2023
1 parent b394ae4 commit 8ba7fb0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@
<artifactId>spring-cloud-contract-stub-runner</artifactId>
</dependency>
<dependency>
<artifactId>jetty-server</artifactId>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-ee10-servlet</artifactId>
<groupId>org.eclipse.jetty.ee10</groupId>
</dependency>
<dependency>
<artifactId>jetty-servlet</artifactId>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-ee10-servlet</artifactId>
<groupId>org.eclipse.jetty.ee10</groupId>
</dependency>
<dependency>
<artifactId>jetty-servlets</artifactId>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-ee10-servlets</artifactId>
<groupId>org.eclipse.jetty.ee10</groupId>
</dependency>
<dependency>
<groupId>cglib</groupId>
Expand Down
12 changes: 6 additions & 6 deletions spring-cloud-contract-verifier/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -254,18 +254,18 @@
<scope>test</scope>
</dependency>
<dependency>
<artifactId>jetty-server</artifactId>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-ee10-servlet</artifactId>
<groupId>org.eclipse.jetty.ee10</groupId>
<scope>test</scope>
</dependency>
<dependency>
<artifactId>jetty-servlet</artifactId>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-ee10-servlet</artifactId>
<groupId>org.eclipse.jetty.ee10</groupId>
<scope>test</scope>
</dependency>
<dependency>
<artifactId>jetty-servlets</artifactId>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-ee10-servlets</artifactId>
<groupId>org.eclipse.jetty.ee10</groupId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 8ba7fb0

Please sign in to comment.