Skip to content

Commit d8909d0

Browse files
committed
Bump odata to version 5.0.0
1 parent 65e918c commit d8909d0

File tree

3 files changed

+31
-6
lines changed

3 files changed

+31
-6
lines changed

common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<dependency>
3434
<groupId>org.apache.commons</groupId>
3535
<artifactId>commons-lang3</artifactId>
36-
<version>3.18.0</version>
36+
<version>${commons.lang3.version}</version>
3737
</dependency>
3838
<dependency>
3939
<groupId>commons-io</groupId>

gxodata/pom.xml

Lines changed: 29 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,24 +22,48 @@
2222
<dependency>
2323
<groupId>org.apache.olingo</groupId>
2424
<artifactId>odata-commons-api</artifactId>
25-
<version>4.9.0</version>
25+
<version>5.0.0</version>
2626
</dependency>
2727
<dependency>
2828
<groupId>org.apache.olingo</groupId>
2929
<artifactId>odata-commons-core</artifactId>
30-
<version>4.9.0</version>
30+
<version>5.0.0</version>
3131
</dependency>
3232
<dependency>
3333
<groupId>org.apache.olingo</groupId>
3434
<artifactId>odata-client-api</artifactId>
35-
<version>4.9.0</version>
35+
<version>5.0.0</version>
3636
</dependency>
3737
<dependency>
3838
<groupId>org.apache.olingo</groupId>
3939
<artifactId>odata-client-core</artifactId>
40-
<version>4.9.0</version>
40+
<version>5.0.0</version>
4141
</dependency>
42-
</dependencies>
42+
<!-- overwrite odata-client-core jackson-core dependency due to CVEs -->
43+
<dependency>
44+
<groupId>com.fasterxml.jackson.core</groupId>
45+
<artifactId>jackson-core</artifactId>
46+
<version>${jackson.version}</version>
47+
</dependency>
48+
<!-- overwrite odata-client-core jackson-databind dependency due to CVEs -->
49+
<dependency>
50+
<groupId>com.fasterxml.jackson.core</groupId>
51+
<artifactId>jackson-databind</artifactId>
52+
<version>${jackson.version}</version>
53+
</dependency>
54+
<!-- overwrite odata-client-core commons-io dependency due to CVEs -->
55+
<dependency>
56+
<groupId>commons-io</groupId>
57+
<artifactId>commons-io</artifactId>
58+
<version>${commons-io.version}</version>
59+
</dependency>
60+
<!-- overwrite odata-client-core commons-lang3 dependency due to CVEs -->
61+
<dependency>
62+
<groupId>org.apache.commons</groupId>
63+
<artifactId>commons-lang3</artifactId>
64+
<version>${commons.lang3.version}</version>
65+
</dependency>
66+
</dependencies>
4367

4468
<build>
4569
<finalName>gxodata</finalName>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
<commons-codec.version>1.15</commons-codec.version>
3434
<xmlsec.version>3.0.3</xmlsec.version>
3535
<jose.version>10.4</jose.version>
36+
<commons.lang3.version>3.18.0</commons.lang3.version>
3637

3738
</properties>
3839

0 commit comments

Comments
 (0)