Skip to content

Commit

Permalink
Merge pull request #44 from ojhaakhil/bugfix/update-jackson-version
Browse files Browse the repository at this point in the history
Updating jackson version to 2.10.4
  • Loading branch information
alpgurtan authored Jun 22, 2020
2 parents 28be1ae + bad0532 commit f71295a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions backup-commons/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'java'
apply plugin: 'maven'

group 'com.opsgenie.tools'
version '0.23.2'
version '0.23.3'

sourceCompatibility = 1.6
targetCompatibility = 1.6
Expand All @@ -23,7 +23,7 @@ dependencies {
compile "com.beust:jcommander:1.48"
compile 'org.eclipse.jgit:org.eclipse.jgit:4.5.0.201609210915-r'
compile "com.opsgenie.oas:opsgenie-sdk-swagger:1.0.10"
compile ('com.fasterxml.jackson.core:jackson-databind:2.10.0') {
compile ('com.fasterxml.jackson.core:jackson-databind:2.10.4') {
force = true
}
}
}
4 changes: 2 additions & 2 deletions backup-export/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.opsgenie.tools'
version '0.23.2'
version '0.23.3'

apply plugin: 'java'

Expand Down Expand Up @@ -33,4 +33,4 @@ task exportUtilJar(type: Jar) {
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
exclude("META-INF/*.SF", "META-INF/*.DSA", "META-INF/*.RSA")
with jar
}
}
4 changes: 2 additions & 2 deletions backup-import/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.opsgenie.tools'
version '0.23.2'
version '0.23.3'

apply plugin: 'java'

Expand Down Expand Up @@ -33,4 +33,4 @@ task importUtilJar(type: Jar) {
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
exclude("META-INF/*.SF", "META-INF/*.DSA", "META-INF/*.RSA")
with jar
}
}
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'java'
apply plugin: 'maven'

group 'com.opsgenie.tools'
version '0.23.2'
version '0.23.3'

sourceCompatibility = 1.6
targetCompatibility = 1.6
Expand Down Expand Up @@ -45,4 +45,4 @@ jar {
"Implementation-Version": project.version,
)
}
}
}

0 comments on commit f71295a

Please sign in to comment.