Skip to content

Commit

Permalink
upgrade dependencies (gson:2.10, groovy:3.0.13, hibernate:5.6.12, slf…
Browse files Browse the repository at this point in the history
…4j:2.0.3)
  • Loading branch information
asolntsev committed Oct 28, 2022
1 parent f47c4f6 commit 53802fb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
20 changes: 10 additions & 10 deletions framework/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dependencies {
api('com.google.code.findbugs:jsr305:3.0.2')
implementation('io.github.classgraph:classgraph:4.8.149')
api('com.zaxxer:HikariCP:5.0.1')
api('com.google.code.gson:gson:2.9.1')
api('com.google.code.gson:gson:2.10')
api('com.jamonapi:jamon:2.82') {transitive = false}
implementation('com.ning:async-http-client:1.9.40') {
exclude group: 'io.netty'
Expand All @@ -20,21 +20,21 @@ dependencies {
implementation('ch.qos.reload4j:reload4j:1.2.22')
implementation('org.ehcache:ehcache:3.10.1')
api('net.sf.oval:oval:3.2.1')
api('org.codehaus.groovy:groovy:3.0.12')
api('org.codehaus.groovy:groovy-xml:3.0.12')
api('org.hibernate:hibernate-core:5.6.11.Final')
api('org.codehaus.groovy:groovy:3.0.13')
api('org.codehaus.groovy:groovy-xml:3.0.13')
api('org.hibernate:hibernate-core:5.6.12.Final')
api('org.hibernate.common:hibernate-commons-annotations:5.1.2.Final')
api('org.hibernate:hibernate-validator:7.0.4.Final')
api('org.hibernate:hibernate-validator:7.0.5.Final')
api('javax.persistence:javax.persistence-api:2.2')
implementation('org.hibernate:hibernate-ehcache:5.6.11.Final') {transitive = false}
implementation('org.hibernate:hibernate-ehcache:5.6.12.Final') {transitive = false}
api('io.netty:netty:3.10.6.Final')
api('org.slf4j:slf4j-api:2.0.0')
api('org.slf4j:slf4j-reload4j:2.0.0')
api('org.slf4j:jul-to-slf4j:2.0.0')
api('org.slf4j:slf4j-api:2.0.3')
api('org.slf4j:slf4j-reload4j:2.0.3')
api('org.slf4j:jul-to-slf4j:2.0.3')
api('net.spy:spymemcached:2.12.3')

testImplementation('junit:junit:4.13.2')
testImplementation('org.mockito:mockito-core:4.8.0')
testImplementation('org.mockito:mockito-core:4.8.1')
testImplementation('org.assertj:assertj-core:3.23.1')
}

Expand Down
2 changes: 1 addition & 1 deletion pdf/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ test {
dependencies {
implementation project(':framework')
testImplementation project(':framework').sourceSets.test.compileClasspath
testImplementation('org.mockito:mockito-core:4.8.0')
testImplementation('org.mockito:mockito-core:4.8.1')

implementation('commons-lang:commons-lang:2.6')
thirdParty("org.xhtmlrenderer:flying-saucer-core:$FLYING_SOURCER_VERSION")
Expand Down
4 changes: 2 additions & 2 deletions replay-tests/replay-tests.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ dependencies {
implementation project(':fastergt')

testImplementation('org.assertj:assertj-core:3.23.1')
testImplementation('com.codeborne:selenide:6.8.0')
testImplementation('com.codeborne:selenide:6.9.0')
testImplementation('junit:junit:4.13.2')
testImplementation('org.mockito:mockito-core:4.8.0')
testImplementation('org.mockito:mockito-core:4.8.1')
}

test {
Expand Down

0 comments on commit 53802fb

Please sign in to comment.