File tree Expand file tree Collapse file tree 7 files changed +85
-15
lines changed
main/java/org/exist/util/serializer
test/java/org/exist/util/serializer
src/main/java/org/exist/xquery/modules/exi Expand file tree Collapse file tree 7 files changed +85
-15
lines changed Original file line number Diff line number Diff line change 101
101
</exclusions >
102
102
</dependency >
103
103
104
+ <dependency >
105
+ <groupId >com.siemens.ct.exi</groupId >
106
+ <artifactId >exificient-grammars</artifactId >
107
+ <scope >compile</scope >
108
+ <exclusions >
109
+ <exclusion > <!-- conflicts with xerces 2.12.2 -->
110
+ <groupId >xerces</groupId >
111
+ <artifactId >xercesImpl</artifactId >
112
+ </exclusion >
113
+ </exclusions >
114
+ </dependency >
115
+
116
+ <dependency >
117
+ <groupId >com.siemens.ct.exi</groupId >
118
+ <artifactId >exificient-core</artifactId >
119
+ <scope >compile</scope >
120
+ <exclusions >
121
+ <exclusion > <!-- conflicts with xerces 2.12.2 -->
122
+ <groupId >xerces</groupId >
123
+ <artifactId >xercesImpl</artifactId >
124
+ </exclusion >
125
+ </exclusions >
126
+ </dependency >
127
+
104
128
<dependency >
105
129
<groupId >com.ibm.icu</groupId >
106
130
<artifactId >icu4j</artifactId >
Original file line number Diff line number Diff line change 34
34
import org .xml .sax .SAXException ;
35
35
import org .xml .sax .helpers .AttributesImpl ;
36
36
37
- import com .siemens .ct .exi .EXIFactory ;
38
- import com .siemens .ct .exi .GrammarFactory ;
39
- import com .siemens .ct .exi .api . sax . SAXEncoder ;
40
- import com .siemens .ct .exi .exceptions . EXIException ;
41
- import com .siemens .ct .exi .grammars .Grammars ;
42
- import com .siemens .ct .exi .helpers . DefaultEXIFactory ;
37
+ import com .siemens .ct .exi .core . EXIFactory ;
38
+ import com .siemens .ct .exi .core . exceptions . EXIException ;
39
+ import com .siemens .ct .exi .core . grammars . Grammars ;
40
+ import com .siemens .ct .exi .core . helpers . DefaultEXIFactory ;
41
+ import com .siemens .ct .exi .grammars .GrammarFactory ;
42
+ import com .siemens .ct .exi .main . api . sax . SAXEncoder ;
43
43
44
44
import javax .annotation .Nullable ;
45
45
Original file line number Diff line number Diff line change 40
40
import org .junit .Test ;
41
41
import org .xml .sax .Attributes ;
42
42
43
- import com .siemens .ct .exi .api .sax .SAXEncoder ;
43
+ import com .siemens .ct .exi .main . api .sax .SAXEncoder ;
44
44
45
45
public class EXISerializerTest {
46
46
Original file line number Diff line number Diff line change 417
417
<dependency >
418
418
<groupId >com.siemens.ct.exi</groupId >
419
419
<artifactId >exificient</artifactId >
420
- <version >0.9.3 </version >
420
+ <version >1.0.7 </version >
421
421
<exclusions >
422
422
<exclusion > <!-- conflicts with xerces 2.12.0 dependency -->
423
423
<groupId >xerces</groupId >
426
426
</exclusions >
427
427
</dependency >
428
428
429
+ <dependency >
430
+ <groupId >com.siemens.ct.exi</groupId >
431
+ <artifactId >exificient-grammars</artifactId >
432
+ <version >1.0.7</version >
433
+ <exclusions >
434
+ <exclusion > <!-- conflicts with xerces 2.12.2 -->
435
+ <groupId >xerces</groupId >
436
+ <artifactId >xercesImpl</artifactId >
437
+ </exclusion >
438
+ </exclusions >
439
+ </dependency >
440
+
441
+ <dependency >
442
+ <groupId >com.siemens.ct.exi</groupId >
443
+ <artifactId >exificient-core</artifactId >
444
+ <version >1.0.7</version >
445
+ <exclusions >
446
+ <exclusion > <!-- conflicts with xerces 2.12.2 -->
447
+ <groupId >xerces</groupId >
448
+ <artifactId >xercesImpl</artifactId >
449
+ </exclusion >
450
+ </exclusions >
451
+ </dependency >
452
+
429
453
<dependency >
430
454
<groupId >org.expath.packaging</groupId >
431
455
<artifactId >pkg-java</artifactId >
Original file line number Diff line number Diff line change 58
58
<artifactId >exificient</artifactId >
59
59
</dependency >
60
60
61
+ <dependency >
62
+ <groupId >com.siemens.ct.exi</groupId >
63
+ <artifactId >exificient-grammars</artifactId >
64
+ <exclusions >
65
+ <exclusion > <!-- conflicts with xerces 2.12.2 -->
66
+ <groupId >xerces</groupId >
67
+ <artifactId >xercesImpl</artifactId >
68
+ </exclusion >
69
+ </exclusions >
70
+ </dependency >
71
+
72
+ <dependency >
73
+ <groupId >com.siemens.ct.exi</groupId >
74
+ <artifactId >exificient-core</artifactId >
75
+ <exclusions >
76
+ <exclusion > <!-- conflicts with xerces 2.12.2 -->
77
+ <groupId >xerces</groupId >
78
+ <artifactId >xercesImpl</artifactId >
79
+ </exclusion >
80
+ </exclusions >
81
+ </dependency >
82
+
61
83
<dependency >
62
84
<groupId >com.evolvedbinary.j8fu</groupId >
63
85
<artifactId >j8fu</artifactId >
Original file line number Diff line number Diff line change 45
45
import org .xml .sax .InputSource ;
46
46
import org .xml .sax .SAXException ;
47
47
48
- import com .siemens .ct .exi .EXIFactory ;
49
- import com .siemens .ct .exi .GrammarFactory ;
50
- import com .siemens .ct .exi .api .sax .SAXDecoder ;
51
- import com .siemens .ct .exi .exceptions .EXIException ;
52
- import com .siemens .ct .exi .grammars .Grammars ;
53
- import com .siemens .ct .exi .helpers .DefaultEXIFactory ;
48
+ import com .siemens .ct .exi .core . EXIFactory ;
49
+ import com .siemens .ct .exi .grammars . GrammarFactory ;
50
+ import com .siemens .ct .exi .main . api .sax .SAXDecoder ;
51
+ import com .siemens .ct .exi .core . exceptions .EXIException ;
52
+ import com .siemens .ct .exi .core . grammars .Grammars ;
53
+ import com .siemens .ct .exi .core . helpers .DefaultEXIFactory ;
54
54
55
55
/**
56
56
* eXist EXI Module Extension DecodeExiFunction.
Original file line number Diff line number Diff line change 45
45
import org .exist .xquery .value .Type ;
46
46
import org .xml .sax .SAXException ;
47
47
48
- import com .siemens .ct .exi .exceptions .EXIException ;
48
+ import com .siemens .ct .exi .core . exceptions .EXIException ;
49
49
50
50
/**
51
51
* eXist EXI Module Extension EncodeExiFunction.
You can’t perform that action at this time.
0 commit comments