Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump dependencies #289

Merged
merged 6 commits into from
Oct 25, 2023
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.9.10'
id 'org.jetbrains.dokka' version '1.9.0'
id 'org.jetbrains.dokka' version '1.9.10'
id 'maven-publish'
id 'io.github.gradle-nexus.publish-plugin' version '1.3.0'
id 'signing'
Expand Down Expand Up @@ -46,7 +46,7 @@ javadoc.options.encoding = 'UTF-8'

protobuf {
protoc {
artifact = 'com.google.protobuf:protoc:3.23.4'
artifact = 'com.google.protobuf:protoc:3.24.4'
}
plugins {
javalite {
Expand All @@ -70,12 +70,12 @@ protobuf {
dependencies {
implementation group: 'commons-codec', name: 'commons-codec', version: '1.16.0'
implementation group: 'org.apache.commons', name: 'commons-text', version: '1.10.0'
implementation group: 'org.apache.tika', name: 'tika-core', version: '2.8.0'
implementation group: 'org.apache.tika', name: 'tika-core', version: '2.9.1'


//Jackson
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.15.2'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.15.2'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.15.3'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.15.3'

//FlexMark
implementation group: 'com.vladsch.flexmark', name: 'flexmark', version: '0.62.2'
Expand All @@ -84,7 +84,7 @@ dependencies {
implementation group: 'com.vladsch.flexmark', name: 'flexmark-ext-gfm-tasklist', version: '0.62.2'

// Protobuf
implementation group: 'com.google.protobuf', name: 'protobuf-kotlin-lite', version: '3.24.3'
implementation group: 'com.google.protobuf', name: 'protobuf-kotlin-lite', version: '3.24.4'

// Use the Kotlin JDK standard library.
implementation group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib', version: '1.9.10'
Expand Down
Loading