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
18 changes: 14 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,25 +28,35 @@ subprojects {
ext {
versions = [
'ace': '1.3.3',
'antlr': '3.2',
'assertj_core': '3.11.1',
'antlr': '3.5.2',
'assertj': '3.11.1',
'commons_compress': '1.21',
'commons_io': '2.7',
'dbcp': '1.4',
'dspace': '1.0.0',
'equalsverifier': '3.8.2',
'everit': '1.14.2',
'guava': '32.0.1-jre',
'jackson': '2.13.3',
'jackson_databind': '2.15.1',
'jackson': '2.15.1',
'jdk': '11',
'jdom': '2.0.6.1',
'jena': '3.17.0',
'jetty': '9.4.14.v20181114',
'jndi': '0.11.4.1',
'jquery': '3.3.1-1',
'jsonpath': '2.7.0',
'jsoup': '1.15.4',
'junit': '4.12',
'junit_jupiter': '5.8.2',
'junit_platform': '1.4.2',
'mockito': '2.27.0',
'opencsv': '5.9',
'requirejs': '2.3.6',
'slf4j': '1.7.36',
'slf4j_mock': '2.3.0',
'tukaani': '1.6',
'wiremock': '2.35.0',
'xalan': '2.7.0',
'xtext': '2.26.0'
]
}
Expand Down
4 changes: 2 additions & 2 deletions metafacture-biblio/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ dependencies {
api project(':metafacture-framework')
implementation project(':metafacture-commons')
implementation project(':metafacture-flowcontrol')
implementation 'org.dspace:oclc-harvester2:1.0.0'
implementation ('xalan:xalan:2.7.0') {
implementation "org.dspace:oclc-harvester2:${versions.dspace}"
implementation ("xalan:xalan:${versions.xalan}") {
exclude group: 'xalan', module: 'serializer'
exclude group: 'xercesImpl', module: 'xercesImpl'
exclude group: 'xml-apis', module: 'xml-apis'
Expand Down
2 changes: 1 addition & 1 deletion metafacture-csv/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ description = 'Modules for processing comma-separated values'

dependencies {
api project(':metafacture-framework')
implementation 'com.opencsv:opencsv:5.9'
implementation "com.opencsv:opencsv:${versions.opencsv}"
testImplementation "junit:junit:${versions.junit}"
testImplementation "org.mockito:mockito-core:${versions.mockito}"
}
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:${versions.jackson_databind}"
implementation "com.fasterxml.jackson.core:jackson-databind:${versions.jackson}"
testImplementation "junit:junit:${versions.junit}"
testImplementation "org.mockito:mockito-core:${versions.mockito}"
}
2 changes: 1 addition & 1 deletion metafacture-flowcontrol/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ dependencies {
implementation "org.slf4j:slf4j-api:${versions.slf4j}"
testImplementation "junit:junit:${versions.junit}"
testImplementation "org.mockito:mockito-core:${versions.mockito}"
testImplementation "org.assertj:assertj-core:${versions.assertj_core}"
testImplementation "org.assertj:assertj-core:${versions.assertj}"
testRuntimeOnly "org.slf4j:slf4j-simple:${versions.slf4j}"
}
2 changes: 1 addition & 1 deletion metafacture-flux/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ dependencies {
implementation project(':metafacture-commons')
implementation project(':metafacture-io')
testRuntimeOnly project(':metafacture-plumbing')
antlr 'org.antlr:antlr:3.5.2'
antlr "org.antlr:antlr:${versions.antlr}"
testImplementation "junit:junit:${versions.junit}"
}
4 changes: 2 additions & 2 deletions metafacture-html/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ dependencies {
implementation project(':metafacture-commons')
implementation "org.slf4j:slf4j-api:${versions.slf4j}"
implementation "org.apache.commons:commons-compress:${versions.commons_compress}"
implementation 'commons-io:commons-io:2.7'
implementation 'org.jsoup:jsoup:1.15.4'
implementation "commons-io:commons-io:${versions.commons_io}"
implementation "org.jsoup:jsoup:${versions.jsoup}"
testImplementation "junit:junit:${versions.junit}"
testImplementation "org.mockito:mockito-core:${versions.mockito}"
testRuntimeOnly "org.slf4j:slf4j-simple:${versions.slf4j}"
Expand Down
8 changes: 4 additions & 4 deletions metafacture-io/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ description = 'Modules for reading and writing data streams'
dependencies {
api project(':metafacture-framework')
implementation project(':metafacture-commons')
implementation 'commons-io:commons-io:2.5'
implementation "commons-io:commons-io:${versions.commons_io}"
implementation "org.apache.commons:commons-compress:${versions.commons_compress}"
runtimeOnly 'org.tukaani:xz:1.6'
testImplementation 'com.github.tomakehurst:wiremock-jre8:2.33.2'
runtimeOnly "org.tukaani:xz:${versions.tukaani}"
testImplementation "com.github.tomakehurst:wiremock-jre8:${versions.wiremock}"
testImplementation "junit:junit:${versions.junit}"
testImplementation "org.mockito:mockito-core:${versions.mockito}"
testImplementation "org.assertj:assertj-core:${versions.assertj_core}"
testImplementation "org.assertj:assertj-core:${versions.assertj}"
testRuntimeOnly "org.slf4j:slf4j-simple:${versions.slf4j}"
}
2 changes: 1 addition & 1 deletion metafacture-jdom/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ description = 'Modules for converting JDOM documents to Metafacture streams and

dependencies {
api project(':metafacture-framework')
api 'org.jdom:jdom2:2.0.6.1'
api "org.jdom:jdom2:${versions.jdom}"
implementation project(':metafacture-commons')
}
8 changes: 4 additions & 4 deletions metafacture-json/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ description = 'Modules for processing JSON data in Metafacture'

dependencies {
api project(':metafacture-framework')
implementation 'com.fasterxml.jackson.core:jackson-core:2.14.2'
implementation "com.fasterxml.jackson.core:jackson-databind:${versions.jackson_databind}"
implementation 'com.jayway.jsonpath:json-path:2.7.0'
implementation 'com.github.erosb:everit-json-schema:1.14.2'
implementation "com.fasterxml.jackson.core:jackson-core:${versions.jackson}"
implementation "com.fasterxml.jackson.core:jackson-databind:${versions.jackson}"
implementation "com.jayway.jsonpath:json-path:${versions.jsonpath}"
implementation "com.github.erosb:everit-json-schema:${versions.everit}"
testImplementation "junit:junit:${versions.junit}"
testImplementation "org.mockito:mockito-core:${versions.mockito}"
testImplementation "com.github.tomakehurst:wiremock-jre8:${versions.wiremock}"
Expand Down
6 changes: 3 additions & 3 deletions metafacture-runner/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,12 @@ dependencies {
// work out of the box. By including the dependencies in the assembly without
// putting them on the class path, the user can replace them easily with other
// implementations if necessary:
provided 'simple-jndi:simple-jndi:0.11.4.1'
provided "simple-jndi:simple-jndi:${versions.jndi}"
// Required for connection pooling with simple-jndi:
provided 'commons-dbcp:commons-dbcp:1.4'
provided "commons-dbcp:commons-dbcp:${versions.dbcp}"

implementation('org.antlr:antlr-runtime') {
version { strictly versions.antlr }
version { strictly '3.2' }
}
}

Expand Down
2 changes: 1 addition & 1 deletion metafacture-yaml/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ description = 'Modules for processing YAML data in Metafacture'

dependencies {
api project(':metafacture-framework')
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.15.1'
implementation "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:${versions.jackson}"
testImplementation "junit:junit:${versions.junit}"
testImplementation "org.mockito:mockito-core:${versions.mockito}"
}