Skip to content

Commit 5fa7dfb

Browse files
authored
Merge pull request #215 from CDOT-CV/update_jpoasnpojo_v1.0.2
Bug Fix: Support open type XML deserialization of special characters
2 parents f4efaad + 72ffa5c commit 5fa7dfb

File tree

6 files changed

+24
-14
lines changed

6 files changed

+24
-14
lines changed

jpo-ode-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>usdot.jpo.ode</groupId>
77
<artifactId>jpo-ode</artifactId>
8-
<version>5.0.1</version>
8+
<version>5.0.2</version>
99
</parent>
1010

1111
<artifactId>jpo-ode-common</artifactId>

jpo-ode-core/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>usdot.jpo.ode</groupId>
77
<artifactId>jpo-ode</artifactId>
8-
<version>5.0.1</version>
8+
<version>5.0.2</version>
99
</parent>
1010

1111
<artifactId>jpo-ode-core</artifactId>
@@ -23,12 +23,12 @@
2323
<dependency>
2424
<groupId>usdot.jpo.ode</groupId>
2525
<artifactId>jpo-ode-common</artifactId>
26-
<version>5.0.1</version>
26+
<version>5.0.2</version>
2727
</dependency>
2828
<dependency>
2929
<groupId>usdot.jpo.ode</groupId>
3030
<artifactId>jpo-ode-plugins</artifactId>
31-
<version>5.0.1</version>
31+
<version>5.0.2</version>
3232
</dependency>
3333
<dependency>
3434
<groupId>org.apache.httpcomponents</groupId>
@@ -99,7 +99,7 @@
9999
<dependency>
100100
<groupId>usdot.jpo.asn</groupId>
101101
<artifactId>jpo-asn-j2735-2024</artifactId>
102-
<version>1.0.1</version>
102+
<version>1.0.2</version>
103103
</dependency>
104104
</dependencies>
105105

jpo-ode-plugins/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>usdot.jpo.ode</groupId>
1313
<artifactId>jpo-ode</artifactId>
14-
<version>5.0.1</version>
14+
<version>5.0.2</version>
1515
</parent>
1616
<properties>
1717
<!-- SonarQube Properties -->
@@ -27,7 +27,7 @@
2727
<dependency>
2828
<groupId>usdot.jpo.ode</groupId>
2929
<artifactId>jpo-ode-common</artifactId>
30-
<version>5.0.1</version>
30+
<version>5.0.2</version>
3131
</dependency>
3232
<!-- TODO open-ode
3333
<dependency>

jpo-ode-svcs/pom.xml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>usdot.jpo.ode</groupId>
66
<artifactId>jpo-ode</artifactId>
7-
<version>5.0.1</version>
7+
<version>5.0.2</version>
88
</parent>
99
<artifactId>jpo-ode-svcs</artifactId>
1010
<packaging>jar</packaging>
@@ -124,12 +124,12 @@
124124
<dependency>
125125
<groupId>usdot.jpo.ode</groupId>
126126
<artifactId>jpo-ode-core</artifactId>
127-
<version>5.0.1</version>
127+
<version>5.0.2</version>
128128
</dependency>
129129
<dependency>
130130
<groupId>usdot.jpo.ode</groupId>
131131
<artifactId>jpo-ode-plugins</artifactId>
132-
<version>5.0.1</version>
132+
<version>5.0.2</version>
133133
</dependency>
134134
<dependency>
135135
<groupId>org.springframework</groupId>
@@ -159,14 +159,24 @@
159159
<dependency>
160160
<groupId>usdot.jpo.asn</groupId>
161161
<artifactId>jpo-asn-j2735-2024</artifactId>
162-
<version>1.0.1</version>
162+
<version>1.0.2</version>
163163
</dependency>
164164
<dependency>
165165
<groupId>net.javacrumbs.json-unit</groupId>
166166
<artifactId>json-unit</artifactId>
167167
<version>4.1.0</version>
168168
<scope>test</scope>
169169
</dependency>
170+
<dependency>
171+
<groupId>org.apache.commons</groupId>
172+
<artifactId>commons-lang3</artifactId>
173+
<version>3.18.0</version>
174+
</dependency>
175+
<dependency>
176+
<groupId>org.apache.commons</groupId>
177+
<artifactId>commons-text</artifactId>
178+
<version>1.14.0</version>
179+
</dependency>
170180
</dependencies>
171181
<build>
172182
<finalName>${project.artifactId}</finalName>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111

1212
<scm>
1313
<developerConnection>scm:git:https://github.com/usdot-jpo-ode/jpo-ode.git</developerConnection>
14-
<tag>jpo-ode-5.0.1</tag>
14+
<tag>jpo-ode-5.0.2</tag>
1515
</scm>
1616

1717
<groupId>usdot.jpo.ode</groupId>
1818
<artifactId>jpo-ode</artifactId>
19-
<version>5.0.1</version>
19+
<version>5.0.2</version>
2020
<packaging>pom</packaging>
2121
<modules>
2222
<module>jpo-ode-common</module>

0 commit comments

Comments
 (0)