Skip to content

Commit

Permalink
Upgraded dependencies to pass OWASP security scan (#1096)
Browse files Browse the repository at this point in the history
  • Loading branch information
aklish authored Dec 5, 2019
1 parent 08fd3f5 commit c37a342
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 5 deletions.
31 changes: 31 additions & 0 deletions elide-spring/elide-spring-boot-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,23 @@
<version>4.5.8-SNAPSHOT</version>
</dependency>

<!-- Jetty -->
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlets</artifactId>
<version>${version.jetty}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>websocket-server</artifactId>
<version>${version.jetty}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>javax-websocket-server-impl</artifactId>
<version>${version.jetty}</version>
</dependency>

<dependency>
<groupId>com.yahoo.elide</groupId>
<artifactId>elide-spring-boot-autoconfigure</artifactId>
Expand All @@ -102,6 +119,20 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
<version>${spring.boot.version}</version>
<exclusions>
<exclusion>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlets</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>websocket-server</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>javax-websocket-server-impl</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down
3 changes: 0 additions & 3 deletions elide-standalone/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@

<properties>
<!-- Versions -->
<jetty.version>9.4.17.v20190418</jetty.version>
<logback.version>1.2.3</logback.version>
<metrics.version>4.1.1</metrics.version>

Expand Down Expand Up @@ -118,13 +117,11 @@
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>${jetty.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>${jetty.version}</version>
<scope>compile</scope>
</dependency>

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>23.0</version>
<version>28.1-jre</version>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
Expand Down Expand Up @@ -158,7 +158,7 @@
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-continuation</artifactId>
<version>9.4.22.v20191022</version>
<version>${version.jetty}</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
Expand Down

0 comments on commit c37a342

Please sign in to comment.