Skip to content

Commit 9618312

Browse files
committed
BAEL-18777 POM Properties Cleanup
- Pom properties cleanup fixes
1 parent 2137f71 commit 9618312

3 files changed

Lines changed: 19 additions & 1 deletion

File tree

jackson-2/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@
2828
<version>${jackson.version}</version>
2929
</dependency>
3030

31+
<!-- Allow use of LocalDate -->
32+
<dependency>
33+
<groupId>com.fasterxml.jackson.datatype</groupId>
34+
<artifactId>jackson-datatype-jsr310</artifactId>
35+
<version>${jackson.version}</version>
36+
</dependency>
37+
3138

3239
<!-- test scoped -->
3340

javaxval/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@
1717
<artifactId>hibernate-validator</artifactId>
1818
<version>${hibernate-validator.version}</version>
1919
</dependency>
20+
<dependency>
21+
<groupId>org.glassfish</groupId>
22+
<artifactId>javax.el</artifactId>
23+
<version>${javax.el.version}</version>
24+
</dependency>
2025
<dependency>
2126
<groupId>org.springframework</groupId>
2227
<artifactId>spring-context</artifactId>
@@ -37,6 +42,7 @@
3742

3843
<properties>
3944
<hibernate-validator.version>6.0.13.Final</hibernate-validator.version>
45+
<javax.el.version>3.0.0</javax.el.version>
4046
<org.springframework.version>5.0.2.RELEASE</org.springframework.version>
4147
<assertj.version>3.11.1</assertj.version>
4248
</properties>

json/pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,11 @@
4949
<artifactId>javax.json</artifactId>
5050
<version>${javax.version}</version>
5151
</dependency>
52-
52+
<dependency>
53+
<groupId>org.eclipse</groupId>
54+
<artifactId>yasson</artifactId>
55+
<version>${yasson.version}</version>
56+
</dependency>
5357
<!-- utils -->
5458
<dependency>
5559
<groupId>org.apache.commons</groupId>
@@ -70,6 +74,7 @@
7074
<fastjson.version>1.2.21</fastjson.version>
7175
<jsonb-api.version>1.0</jsonb-api.version>
7276
<commons-collections4.version>4.1</commons-collections4.version>
77+
<yasson.version>1.0.1</yasson.version>
7378
<json.version>20171018</json.version>
7479
<gson.version>2.8.5</gson.version>
7580
<javax.version>1.1.2</javax.version>

0 commit comments

Comments
 (0)