Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,5 @@ buildbot.keyring
# Ignore VS code/codium config files
.vscode

# Ignore files with sensitive data
gradle.properties
24 changes: 24 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ subprojects {
group 'build'
}

task allDeps(type: DependencyReportTask) {}

javadoc {
options {
addBooleanOption 'Xwerror', true
Expand Down Expand Up @@ -143,6 +145,28 @@ gradle.projectsEvaluated {
}
url 'https://github.com/metafacture/metafacture-core'
inceptionYear '2011'
developers {
developer {
id 'mgeipel'
name 'Markus M. Geipel'
email '[email protected]'
url 'https://github.com/mgeipel'
roles {
role 'architect'
role 'developer'
}
}
developer {
id 'cboehme'
name 'Christoph Böhme'
email '[email protected]'
url 'https://github.com/cboehme'
roles {
role 'architect'
role 'developer'
}
}
}
organization {
name 'Metafacture'
url 'https://github.com/metafacture'
Expand Down
2 changes: 1 addition & 1 deletion metafacture-biblio/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dependencies {
exclude group: 'xercesImpl', module: 'xercesImpl'
exclude group: 'xml-apis', module: 'xml-apis'
}
implementation 'log4j:log4j:1.2.12'
implementation 'org.apache.logging.log4j:log4j-core:2.14.1'
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:2.5.5'
}
2 changes: 1 addition & 1 deletion metafacture-elasticsearch/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ description = 'Modules for sending data to an Elasticsearch instance'

dependencies {
api project(':metafacture-framework')
implementation 'com.fasterxml.jackson.core:jackson-databind:2.8.5'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.0'
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:2.5.5'
}
2 changes: 1 addition & 1 deletion metafacture-html/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {
api project(':metafacture-framework')
implementation project(':metafacture-commons')
implementation 'org.slf4j:slf4j-api:1.7.21'
implementation 'org.apache.commons:commons-compress:1.12'
implementation 'org.apache.commons:commons-compress:1.21'
implementation 'commons-io:commons-io:2.6'
implementation 'org.jsoup:jsoup:1.12.1'
testImplementation 'junit:junit:4.12'
Expand Down
2 changes: 1 addition & 1 deletion metafacture-io/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {
api project(':metafacture-framework')
implementation project(':metafacture-commons')
implementation 'commons-io:commons-io:2.5'
implementation 'org.apache.commons:commons-compress:1.20'
implementation 'org.apache.commons:commons-compress:1.21'
runtimeOnly 'org.tukaani:xz:1.6'
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:2.5.5'
Expand Down
4 changes: 2 additions & 2 deletions metafacture-json/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ description = 'Modules for processing JSON data in Metafacture'

dependencies {
api project(':metafacture-framework')
implementation 'com.fasterxml.jackson.core:jackson-core:2.8.5'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.8.5'
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.0'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.0'
implementation 'com.jayway.jsonpath:json-path:2.6.0'
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:2.5.5'
Expand Down
2 changes: 1 addition & 1 deletion metafacture-xml/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {
api project(':metafacture-framework')
implementation project(':metafacture-commons')
implementation 'org.slf4j:slf4j-api:1.7.21'
implementation 'org.apache.commons:commons-compress:1.12'
implementation 'org.apache.commons:commons-compress:1.21'
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:2.5.5'
testRuntimeOnly 'org.slf4j:slf4j-simple:1.7.21'
Expand Down