Skip to content

Commit

Permalink
Merge branch 'dev' into ms/#1084-fix-mappingEntry-processor-bug
Browse files Browse the repository at this point in the history
  • Loading branch information
staudtMarius committed May 15, 2024
2 parents e748745 + 1e7df70 commit d1e5e3d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id 'signing'
id 'pmd' // code check, working on source code
id 'com.diffplug.spotless' version '6.25.0' //code format
id 'com.github.spotbugs' version '6.0.12' // code check, working on byte code
id 'com.github.spotbugs' version '6.0.14' // code check, working on byte code
id 'de.undercouch.download' version '5.6.0'
id 'kr.motd.sphinx' version '2.10.1' // documentation generation
id 'jacoco' // java code coverage plugin
Expand All @@ -18,7 +18,7 @@ ext {
javaVersion = JavaVersion.VERSION_17
groovyVersion = "4.0"
groovyBinaryVersion = "4.0.21"
testcontainersVersion = '1.19.7'
testcontainersVersion = '1.19.8'

scriptsLocation = 'gradle' + File.separator + 'scripts' + File.separator //location of script plugins
}
Expand Down Expand Up @@ -73,7 +73,7 @@ dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
testImplementation "org.spockframework:spock-core:2.3-groovy-$groovyVersion"
testImplementation 'org.objenesis:objenesis:3.4' // Mock creation with constructor parameters
testImplementation 'net.bytebuddy:byte-buddy:1.14.14' // Mocks of classes
testImplementation 'net.bytebuddy:byte-buddy:1.14.15' // Mocks of classes

// testcontainers (docker framework for testing)
testImplementation "org.testcontainers:testcontainers:$testcontainersVersion"
Expand All @@ -94,7 +94,7 @@ dependencies {
runtimeOnly 'org.postgresql:postgresql:42.7.3' // postgresql jdbc driver required during runtime

implementation 'commons-io:commons-io:2.16.1' // I/O functionalities
implementation 'commons-codec:commons-codec:1.16.1' // needed by commons-compress
implementation 'commons-codec:commons-codec:1.17.0' // needed by commons-compress
implementation 'org.apache.commons:commons-compress:1.26.1' // I/O functionalities
}

Expand Down

0 comments on commit d1e5e3d

Please sign in to comment.