Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
atextor committed Sep 25, 2023
1 parent 2cbd9fb commit f28cbb3
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 22 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
plugins {
id 'java'
id 'jacoco'
id 'com.github.ben-manes.versions' version '0.46.0'
id 'com.github.ben-manes.versions' version '0.48.0'
id 'com.adarshr.test-logger' version '3.2.0' apply false
id 'io.freefair.lombok' version '8.0.1' apply false
id 'io.freefair.lombok' version '8.3' apply false
id 'com.github.johnrengelman.shadow' version '8.1.1' apply false
id 'org.ajoberstar.grgit' version '5.0.0'
id 'org.ajoberstar.grgit' version '5.2.0'
}

allprojects {
Expand Down
33 changes: 16 additions & 17 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,33 +16,32 @@

ext.deps = [
caffeine: 'com.github.ben-manes.caffeine:caffeine:2.9.2',
commons_codec: 'commons-codec:commons-codec:1.15',
commons_codec: 'commons-codec:commons-codec:1.16.0',
commons_io: 'org.apache.commons:commons-io:1.3.2',
commons_text: 'org.apache.commons:commons-text:1.10.0',
guava: 'com.google.guava:guava:31.1-jre',
guava: 'com.google.guava:guava:32.1.2-jre',
httpclient: 'org.apache.httpcomponents:httpclient:4.5.14',
jackson_databind: 'com.fasterxml.jackson.core:jackson-databind:2.14.2',
jena: 'org.apache.jena:jena:4.7.0',
jena_core: 'org.apache.jena:jena-core:4.7.0',
jena_arq: 'org.apache.jena:jena-arq:4.7.0',
logback: 'ch.qos.logback:logback-classic:1.4.6',
jackson_databind: 'com.fasterxml.jackson.core:jackson-databind:2.15.2',
jena: 'org.apache.jena:jena:4.9.0',
jena_core: 'org.apache.jena:jena-core:4.9.0',
jena_arq: 'org.apache.jena:jena-arq:4.9.0',
logback: 'ch.qos.logback:logback-classic:1.4.11',
openllet: 'com.github.galigator.openllet:openllet-jena:2.6.5',
owlapi: 'net.sourceforge.owlapi:owlapi-distribution:5.5.0',
picocli: 'info.picocli:picocli:4.7.1',
picocli_codegen: 'info.picocli:picocli-codegen:4.7.1',
slf4j_api: 'org.slf4j:slf4j-api:2.0.7',
svm: 'org.graalvm.nativeimage:svm:22.3.1',
turtle_formatter: 'de.atextor:turtle-formatter:1.2.7',
picocli: 'info.picocli:picocli:4.7.5',
picocli_codegen: 'info.picocli:picocli-codegen:4.7.5',
slf4j_api: 'org.slf4j:slf4j-api:2.0.9',
svm: 'org.graalvm.nativeimage:svm:23.1.0',
turtle_formatter: 'de.atextor:turtle-formatter:1.2.9',
vavr: 'io.vavr:vavr:0.10.4',

// Test
junit_jupiter_api: 'org.junit.jupiter:junit-jupiter-api:5.9.2',
junit_jupiter_params: 'org.junit.jupiter:junit-jupiter-params:5.9.2',
junit_jupiter_engine: 'org.junit.jupiter:junit-jupiter-engine:5.9.2',
junit_jupiter_api: 'org.junit.jupiter:junit-jupiter-api:5.10.0',
junit_jupiter_params: 'org.junit.jupiter:junit-jupiter-params:5.10.0',
junit_jupiter_engine: 'org.junit.jupiter:junit-jupiter-engine:5.10.0',
assertj: 'org.assertj:assertj-core:3.24.2',
jqwik: 'net.jqwik:jqwik:1.7.3',
classgraph: 'io.github.classgraph:classgraph:4.8.157',
jqwik: 'net.jqwik:jqwik:1.8.0',
classgraph: 'io.github.classgraph:classgraph:4.8.162',

// Documentation
nodejs: '12.13.1',
Expand Down
4 changes: 2 additions & 2 deletions docs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

plugins {
id 'com.github.node-gradle.node' version '3.5.1'
id 'com.github.node-gradle.node' version '7.0.0'
}

apply from: file("${rootDir}/dependencies.gradle")
Expand All @@ -25,7 +25,7 @@ node {
download = true
workDir = file("${project.buildDir}/nodejs")
npmWorkDir = file("${project.buildDir}/npm")
nodeModulesDir = file("${project.buildDir}")
nodeProjectDir = file("${project.buildDir}")
}

task installAntoraCli(type: NpmTask) {
Expand Down

0 comments on commit f28cbb3

Please sign in to comment.