@@ -65,8 +65,8 @@ alternative support for serializing POJOs as XML and deserializing XML as pojos.
65
65
<version >4.2.2</version >
66
66
<exclusions >
67
67
<exclusion >
68
- <groupId >javax.xml.stream</groupId >
69
- <artifactId >stax-api</artifactId >
68
+ <groupId >javax.xml.stream</groupId >
69
+ <artifactId >stax-api</artifactId >
70
70
</exclusion >
71
71
</exclusions >
72
72
</dependency >
@@ -80,8 +80,8 @@ alternative support for serializing POJOs as XML and deserializing XML as pojos.
80
80
<version >7.1.0</version >
81
81
<exclusions >
82
82
<exclusion >
83
- <groupId >javax.xml.stream</groupId >
84
- <artifactId >stax-api</artifactId >
83
+ <groupId >javax.xml.stream</groupId >
84
+ <artifactId >stax-api</artifactId >
85
85
</exclusion >
86
86
</exclusions >
87
87
</dependency >
@@ -92,6 +92,24 @@ alternative support for serializing POJOs as XML and deserializing XML as pojos.
92
92
<artifactId >junit</artifactId >
93
93
<scope >test</scope >
94
94
</dependency >
95
+ <!-- 11-Jan-2025, joohyukkim: JSTEP-10, part 1, migrate to JUnit5 -->
96
+ <!--
97
+ <dependency>
98
+ <groupId>org.junit.jupiter</groupId>
99
+ <artifactId>junit-jupiter</artifactId>
100
+ <scope>test</scope>
101
+ </dependency>
102
+ <dependency>
103
+ <groupId>org.junit.jupiter</groupId>
104
+ <artifactId>junit-jupiter-api</artifactId>
105
+ <scope>test</scope>
106
+ </dependency>
107
+ <dependency>
108
+ <groupId>org.assertj</groupId>
109
+ <artifactId>assertj-core</artifactId>
110
+ <scope>test</scope>
111
+ </dependency>
112
+ -->
95
113
96
114
<!-- Jakarta XMLBind (nee javax/jaxb( annotation introspector is needed BUT ONLY
97
115
for tests (starting 2.13: previously compile/runtime)
@@ -115,7 +133,7 @@ alternative support for serializing POJOs as XML and deserializing XML as pojos.
115
133
need, say, Sjsxp
116
134
-->
117
135
<!-- 11-Jan-2025, tatu: Can't properly due to missing JPMS, may re-evalute
118
- in future but for now excluded
136
+ in future but for now excluded
119
137
-->
120
138
<!--
121
139
<dependency>
@@ -125,7 +143,6 @@ alternative support for serializing POJOs as XML and deserializing XML as pojos.
125
143
<scope>test</scope>
126
144
</dependency>
127
145
-->
128
-
129
146
</dependencies >
130
147
131
148
<!-- Alas, need to include snapshot reference since otherwise can not find
@@ -190,11 +207,6 @@ alternative support for serializing POJOs as XML and deserializing XML as pojos.
190
207
</includes >
191
208
</configuration >
192
209
</plugin >
193
- <!-- 20-Mar-2019, tatu: use Moditect for JDK9+ module info inclusion -->
194
- <plugin >
195
- <groupId >org.moditect</groupId >
196
- <artifactId >moditect-maven-plugin</artifactId >
197
- </plugin >
198
210
<!-- 05-Jul-2020, tatu: Add gradle module metadata -->
199
211
<plugin >
200
212
<groupId >de.jjohannes</groupId >
0 commit comments