Skip to content

Commit

Permalink
Merge pull request #3823 from swagger-api/whitesource
Browse files Browse the repository at this point in the history
  • Loading branch information
frantuma authored Dec 5, 2020
2 parents 2d831e1 + e04d173 commit c4de471
Showing 1 changed file with 26 additions and 18 deletions.
44 changes: 26 additions & 18 deletions modules/swagger-gradle-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,25 +21,33 @@ repositories {
}

dependencies {
compile gradleApi()
compile 'org.apache.commons:commons-lang3:3.7'
implementation gradleApi()
implementation 'org.apache.commons:commons-lang3:3.7'

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+'
testCompile 'org.eclipse.jetty:jetty-server:${jettyVersion}'
testCompile 'org.eclipse.jetty:jetty-servlet:${jettyVersion}'
testCompile 'org.eclipse.jetty:jetty-servlets:${jettyVersion}'
testCompile 'org.eclipse.jetty:jetty-webapp:${jettyVersion}'
testCompile 'org.eclipse.jetty:jetty-proxy:${jettyVersion}'
testCompile 'org.eclipse.jetty:jetty-proxy:${jettyVersion}'
testCompile 'org.apache.httpcomponents:httpclient:4.5.13'
testCompile 'commons-codec:commons-codec:1.15'
testCompile 'org.apache.commons:commons-compress:1.20'
testImplementation gradleTestKit()
testImplementation 'com.github.tomakehurst:wiremock:2.27.2'
testImplementation 'javax.servlet:javax.servlet-api:3.1.0'
testImplementation 'com.google.guava:guava:27.0.1-jre'
testImplementation 'javax.ws.rs:javax.ws.rs-api:2.1'
testImplementation "io.swagger.core.v3:swagger-jaxrs2:${project.version}"
testImplementation 'junit:junit:4+'
testImplementation 'org.eclipse.jetty:jetty-server:${jettyVersion}'
testImplementation 'org.eclipse.jetty:jetty-servlet:${jettyVersion}'
testImplementation 'org.eclipse.jetty:jetty-servlets:${jettyVersion}'
testImplementation 'org.eclipse.jetty:jetty-webapp:${jettyVersion}'
testImplementation 'org.eclipse.jetty:jetty-proxy:${jettyVersion}'
testImplementation 'org.apache.httpcomponents:httpclient:4.5.13'
testImplementation 'commons-codec:commons-codec:1.15'
testImplementation 'org.apache.commons:commons-compress:1.20'

testImplementation('com.github.tomakehurst:wiremock:2.27.2') {
exclude group: 'org.eclipse.jetty', module: 'jetty-server'
exclude group: 'org.eclipse.jetty', module: 'jetty-servlet'
exclude group: 'org.eclipse.jetty', module: 'jetty-servlets'
exclude group: 'org.eclipse.jetty', module: 'jetty-webapp'
exclude group: 'org.eclipse.jetty', module: 'jetty-proxy'
exclude group: 'commons-codec', module: 'commons-codec'
}
}

// * * * * * * * * * * * *
Expand Down

0 comments on commit c4de471

Please sign in to comment.