Skip to content

Commit

Permalink
Merge pull request #3819 from swagger-api/whitesource
Browse files Browse the repository at this point in the history
whitesource alerts related deps updates - second run
  • Loading branch information
frantuma authored Dec 5, 2020
2 parents e63f899 + 29892e1 commit 66a9bf0
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 1 deletion.
1 change: 1 addition & 0 deletions modules/swagger-gradle-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ dependencies {
testCompile gradleTestKit()
testCompile 'com.github.tomakehurst:wiremock:2.27.2'
testCompile 'javax.servlet:javax.servlet-api:3.1.0'
testCompile 'com.google.guava:guava:27.0.1-jre'
testCompile 'javax.ws.rs:javax.ws.rs-api:2.1'
testCompile "io.swagger.core.v3:swagger-jaxrs2:${project.version}"
testCompile 'junit:junit:4+'
Expand Down
53 changes: 52 additions & 1 deletion modules/swagger-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -160,15 +160,65 @@
<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock</artifactId>
<version>2.25.0</version>
<version>2.27.2</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlets</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-proxy</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>${wiremock-jetty-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>${wiremock-jetty-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlets</artifactId>
<version>${wiremock-jetty-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<version>${wiremock-jetty-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-proxy</artifactId>
<version>${wiremock-jetty-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
Expand All @@ -190,5 +240,6 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.version>3.6.3</maven.version>
<junit.version>4.13.1</junit.version>
<wiremock-jetty-version>9.3.27.v20190418</wiremock-jetty-version>
</properties>
</project>
14 changes: 14 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -528,6 +528,18 @@
<version>${guava-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>${ant-version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<properties>
Expand All @@ -540,10 +552,12 @@
<felix-version>4.2.1</felix-version>
<servlet-api-version>4.0.3</servlet-api-version>
<jersey2-version>2.26</jersey2-version>
<junit-version>4.13.1</junit-version>
<jackson-version>2.11.1</jackson-version>
<logback-version>1.2.3</logback-version>
<classgraph-version>4.8.65</classgraph-version>
<guava-version>27.0.1-jre</guava-version>
<ant-version>1.10.9</ant-version>
<commons-lang-version>3.7</commons-lang-version>
<commons-io-version>2.6</commons-io-version>
<slf4j-version>1.7.25</slf4j-version>
Expand Down

0 comments on commit 66a9bf0

Please sign in to comment.