File tree Expand file tree Collapse file tree 3 files changed +9
-6
lines changed
src/main/java/org/metafacture/biblio Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -200,6 +200,12 @@ gradle.projectsEvaluated {
200
200
task publish {
201
201
dependsOn tasks. uploadArchives
202
202
}
203
+
204
+ test {
205
+ testLogging {
206
+ exceptionFormat = ' full'
207
+ }
208
+ }
203
209
}
204
210
}
205
211
Original file line number Diff line number Diff line change @@ -22,11 +22,7 @@ dependencies {
22
22
implementation project(' :metafacture-commons' )
23
23
implementation project(' :metafacture-flowcontrol' )
24
24
implementation ' org.dspace:oclc-harvester2:0.1.12'
25
- implementation (' xalan:xalan:2.7.0' ) {
26
- exclude group : ' xalan' , module : ' serializer'
27
- exclude group : ' xercesImpl' , module : ' xercesImpl'
28
- exclude group : ' xml-apis' , module : ' xml-apis'
29
- }
25
+ implementation ' xalan:xalan:2.7.2'
30
26
implementation ' log4j:log4j:1.2.12'
31
27
testImplementation ' junit:junit:4.12'
32
28
testImplementation ' org.mockito:mockito-core:2.5.5'
Original file line number Diff line number Diff line change @@ -50,7 +50,8 @@ public final class OaiPmhOpener extends
50
50
* Default constructor
51
51
*/
52
52
public OaiPmhOpener () {
53
-
53
+ // See https://github.com/metafacture/metafacture-core/issues/334
54
+ System .setProperty ("javax.xml.transform.TransformerFactory" , "com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl" );
54
55
}
55
56
56
57
/**
You can’t perform that action at this time.
0 commit comments