File tree Expand file tree Collapse file tree 12 files changed +34
-24
lines changed
metafacture-elasticsearch Expand file tree Collapse file tree 12 files changed +34
-24
lines changed Original file line number Diff line number Diff line change @@ -28,25 +28,35 @@ subprojects {
28
28
ext {
29
29
versions = [
30
30
' ace' : ' 1.3.3' ,
31
- ' antlr' : ' 3.2' ,
32
- ' assertj_core ' : ' 3.11.1' ,
31
+ ' antlr' : ' 3.5. 2' ,
32
+ ' assertj ' : ' 3.11.1' ,
33
33
' commons_compress' : ' 1.21' ,
34
+ ' commons_io' : ' 2.7' ,
35
+ ' dbcp' : ' 1.4' ,
36
+ ' dspace' : ' 1.0.0' ,
34
37
' equalsverifier' : ' 3.8.2' ,
38
+ ' everit' : ' 1.14.2' ,
35
39
' guava' : ' 32.0.1-jre' ,
36
- ' jackson' : ' 2.13.3' ,
37
- ' jackson_databind' : ' 2.15.1' ,
40
+ ' jackson' : ' 2.15.1' ,
38
41
' jdk' : ' 11' ,
42
+ ' jdom' : ' 2.0.6.1' ,
39
43
' jena' : ' 3.17.0' ,
40
44
' jetty' : ' 9.4.14.v20181114' ,
45
+ ' jndi' : ' 0.11.4.1' ,
41
46
' jquery' : ' 3.3.1-1' ,
47
+ ' jsonpath' : ' 2.7.0' ,
48
+ ' jsoup' : ' 1.15.4' ,
42
49
' junit' : ' 4.12' ,
43
50
' junit_jupiter' : ' 5.8.2' ,
44
51
' junit_platform' : ' 1.4.2' ,
45
52
' mockito' : ' 2.27.0' ,
53
+ ' opencsv' : ' 5.9' ,
46
54
' requirejs' : ' 2.3.6' ,
47
55
' slf4j' : ' 1.7.36' ,
48
56
' slf4j_mock' : ' 2.3.0' ,
57
+ ' tukaani' : ' 1.6' ,
49
58
' wiremock' : ' 2.35.0' ,
59
+ ' xalan' : ' 2.7.0' ,
50
60
' xtext' : ' 2.26.0'
51
61
]
52
62
}
Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ dependencies {
21
21
api project(' :metafacture-framework' )
22
22
implementation project(' :metafacture-commons' )
23
23
implementation project(' :metafacture-flowcontrol' )
24
- implementation ' org.dspace:oclc-harvester2:1.0.0 '
25
- implementation (' xalan:xalan:2.7.0 ' ) {
24
+ implementation " org.dspace:oclc-harvester2:${ versions.dspace } "
25
+ implementation (" xalan:xalan:${ versions.xalan } " ) {
26
26
exclude group : ' xalan' , module : ' serializer'
27
27
exclude group : ' xercesImpl' , module : ' xercesImpl'
28
28
exclude group : ' xml-apis' , module : ' xml-apis'
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ description = 'Modules for processing comma-separated values'
19
19
20
20
dependencies {
21
21
api project(' :metafacture-framework' )
22
- implementation ' com.opencsv:opencsv:5.9 '
22
+ implementation " com.opencsv:opencsv:${ versions.opencsv } "
23
23
testImplementation " junit:junit:${ versions.junit} "
24
24
testImplementation " org.mockito:mockito-core:${ versions.mockito} "
25
25
}
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ description = 'Modules for sending data to an Elasticsearch instance'
19
19
20
20
dependencies {
21
21
api project(' :metafacture-framework' )
22
- implementation " com.fasterxml.jackson.core:jackson-databind:${ versions.jackson_databind } "
22
+ implementation " com.fasterxml.jackson.core:jackson-databind:${ versions.jackson } "
23
23
testImplementation " junit:junit:${ versions.junit} "
24
24
testImplementation " org.mockito:mockito-core:${ versions.mockito} "
25
25
}
Original file line number Diff line number Diff line change @@ -22,6 +22,6 @@ dependencies {
22
22
implementation " org.slf4j:slf4j-api:${ versions.slf4j} "
23
23
testImplementation " junit:junit:${ versions.junit} "
24
24
testImplementation " org.mockito:mockito-core:${ versions.mockito} "
25
- testImplementation " org.assertj:assertj-core:${ versions.assertj_core } "
25
+ testImplementation " org.assertj:assertj-core:${ versions.assertj } "
26
26
testRuntimeOnly " org.slf4j:slf4j-simple:${ versions.slf4j} "
27
27
}
Original file line number Diff line number Diff line change @@ -24,6 +24,6 @@ dependencies {
24
24
implementation project(' :metafacture-commons' )
25
25
implementation project(' :metafacture-io' )
26
26
testRuntimeOnly project(' :metafacture-plumbing' )
27
- antlr ' org.antlr:antlr:3.5.2 '
27
+ antlr " org.antlr:antlr:${ versions.antlr } "
28
28
testImplementation " junit:junit:${ versions.junit} "
29
29
}
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ dependencies {
22
22
implementation project(' :metafacture-commons' )
23
23
implementation " org.slf4j:slf4j-api:${ versions.slf4j} "
24
24
implementation " org.apache.commons:commons-compress:${ versions.commons_compress} "
25
- implementation ' commons-io:commons-io:2.7 '
26
- implementation ' org.jsoup:jsoup:1.15.4 '
25
+ implementation " commons-io:commons-io:${ versions.commons_io } "
26
+ implementation " org.jsoup:jsoup:${ versions.jsoup } "
27
27
testImplementation " junit:junit:${ versions.junit} "
28
28
testImplementation " org.mockito:mockito-core:${ versions.mockito} "
29
29
testRuntimeOnly " org.slf4j:slf4j-simple:${ versions.slf4j} "
Original file line number Diff line number Diff line change @@ -20,12 +20,12 @@ description = 'Modules for reading and writing data streams'
20
20
dependencies {
21
21
api project(' :metafacture-framework' )
22
22
implementation project(' :metafacture-commons' )
23
- implementation ' commons-io:commons-io:2.5 '
23
+ implementation " commons-io:commons-io:${ versions.commons_io } "
24
24
implementation " org.apache.commons:commons-compress:${ versions.commons_compress} "
25
- runtimeOnly ' org.tukaani:xz:1.6 '
26
- testImplementation ' com.github.tomakehurst:wiremock-jre8:2.33.2 '
25
+ runtimeOnly " org.tukaani:xz:${ versions.tukaani } "
26
+ testImplementation " com.github.tomakehurst:wiremock-jre8:${ versions.wiremock } "
27
27
testImplementation " junit:junit:${ versions.junit} "
28
28
testImplementation " org.mockito:mockito-core:${ versions.mockito} "
29
- testImplementation " org.assertj:assertj-core:${ versions.assertj_core } "
29
+ testImplementation " org.assertj:assertj-core:${ versions.assertj } "
30
30
testRuntimeOnly " org.slf4j:slf4j-simple:${ versions.slf4j} "
31
31
}
Original file line number Diff line number Diff line change @@ -19,6 +19,6 @@ description = 'Modules for converting JDOM documents to Metafacture streams and
19
19
20
20
dependencies {
21
21
api project(' :metafacture-framework' )
22
- api ' org.jdom:jdom2:2.0.6.1 '
22
+ api " org.jdom:jdom2:${ versions.jdom } "
23
23
implementation project(' :metafacture-commons' )
24
24
}
Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ description = 'Modules for processing JSON data in Metafacture'
19
19
20
20
dependencies {
21
21
api project(' :metafacture-framework' )
22
- implementation ' com.fasterxml.jackson.core:jackson-core:2.14.2 '
23
- implementation " com.fasterxml.jackson.core:jackson-databind:${ versions.jackson_databind } "
24
- implementation ' com.jayway.jsonpath:json-path:2.7.0 '
25
- implementation ' com.github.erosb:everit-json-schema:1.14.2 '
22
+ implementation " com.fasterxml.jackson.core:jackson-core:${ versions.jackson } "
23
+ implementation " com.fasterxml.jackson.core:jackson-databind:${ versions.jackson } "
24
+ implementation " com.jayway.jsonpath:json-path:${ versions.jsonpath } "
25
+ implementation " com.github.erosb:everit-json-schema:${ versions.everit } "
26
26
testImplementation " junit:junit:${ versions.junit} "
27
27
testImplementation " org.mockito:mockito-core:${ versions.mockito} "
28
28
testImplementation " com.github.tomakehurst:wiremock-jre8:${ versions.wiremock} "
Original file line number Diff line number Diff line change @@ -88,9 +88,9 @@ dependencies {
88
88
// work out of the box. By including the dependencies in the assembly without
89
89
// putting them on the class path, the user can replace them easily with other
90
90
// implementations if necessary:
91
- provided ' simple-jndi:simple-jndi:0.11.4.1 '
91
+ provided " simple-jndi:simple-jndi:${ versions.jndi } "
92
92
// Required for connection pooling with simple-jndi:
93
- provided ' commons-dbcp:commons-dbcp:1.4 '
93
+ provided " commons-dbcp:commons-dbcp:${ versions.dbcp } "
94
94
95
95
implementation(' org.antlr:antlr-runtime' ) {
96
96
version { strictly versions. antlr }
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ description = 'Modules for processing YAML data in Metafacture'
19
19
20
20
dependencies {
21
21
api project(' :metafacture-framework' )
22
- implementation ' com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.15.1 '
22
+ implementation " com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:${ versions.jackson } "
23
23
testImplementation " junit:junit:${ versions.junit} "
24
24
testImplementation " org.mockito:mockito-core:${ versions.mockito} "
25
25
}
You can’t perform that action at this time.
0 commit comments