Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
ketan committed Mar 3, 2020
1 parent bb97610 commit c2cec47
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
7 changes: 2 additions & 5 deletions build.gradle
Expand Up @@ -168,7 +168,7 @@ rootProject.ext.versions = [
apacheAnt : '1.10.7',
apacheHttpComponents : '4.5.6',
aspectj : '1.9.5',
assertJ : '3.15.0',
assertJ : '3.12.2',
bouncyCastle : '1.59', // bouncycastle version has to be compatible with the jruby version
bundler : '2.1.1',
cglib : '3.3.0',
Expand Down Expand Up @@ -236,10 +236,7 @@ rootProject.ext.versions = [
tokenBucket : '1.7',
urlrewrite : '3.2.0',
velocityToolsView : '1.4',
velocityToolsView : '1.4',
xmlUnitMatchers : '2.6.3',
xmlUnitMatchers : '2.6.3',
xmlunitassertj : '2.6.3',
xmlUnit : '2.6.3',
seleniumDrivers : [
chromedriver : '2.41',
geckodriver : '0.21.0',
Expand Down
2 changes: 1 addition & 1 deletion config/config-server/build.gradle
Expand Up @@ -35,7 +35,7 @@ dependencies {
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: project.versions.junit5
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-migrationsupport', version: project.versions.junit5
testCompile group: 'org.assertj', name: 'assertj-core', version: project.versions.assertJ
testCompile group: 'org.xmlunit', name: 'xmlunit-assertj', version: project.versions.xmlunitassertj
testCompile group: 'org.xmlunit', name: 'xmlunit-assertj', version: project.versions.xmlUnit

}

Expand Down
4 changes: 2 additions & 2 deletions server/build.gradle
Expand Up @@ -331,9 +331,9 @@ dependencies {
testCompile project(':jetty9')
testCompile group: 'net.javacrumbs.json-unit', name: 'json-unit-fluent', version: project.versions.jsonUnit
testCompile group: 'org.jsoup', name: 'jsoup', version: project.versions.jsoup
testCompile group: 'org.xmlunit', name: 'xmlunit-matchers', version: project.versions.xmlUnitMatchers
testCompile group: 'org.xmlunit', name: 'xmlunit-matchers', version: project.versions.xmlUnit
testCompile group: 'org.assertj', name: 'assertj-core', version: project.versions.assertJ
testCompile group: 'org.xmlunit', name: 'xmlunit-assertj', version: project.versions.xmlunitassertj
testCompile group: 'org.xmlunit', name: 'xmlunit-assertj', version: project.versions.xmlUnit

testCompile project(':test:http-mocks')

Expand Down

0 comments on commit c2cec47

Please sign in to comment.