Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
U
Unit
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OSDU
OSDU Data Platform
System
Reference and Helper Services
Unit
Merge requests
!357
Ibm and core vul fix
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Ibm and core vul fix
IBM_vul_fix
into
master
Overview
0
Commits
3
Pipelines
3
Changes
2
Merged
Isha Kumari
requested to merge
IBM_vul_fix
into
master
10 months ago
Overview
0
Commits
3
Pipelines
3
Changes
2
Expand
Fixed High and critical vul CVE-2015-7501
Edited
10 months ago
by
Isha Kumari
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
963a94a0
3 commits,
10 months ago
2 files
+
52
−
26
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
provider/unit-ibm/unit-ocp/pom.xml
+
46
−
26
Options
@@ -65,7 +65,7 @@
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-web
</artifactId>
<version>
6.1.
5
</version>
<version>
6.1.
6
</version>
</dependency>
<dependency>
<groupId>
com.google.code.gson
</groupId>
@@ -86,7 +86,13 @@
<dependency>
<groupId>
ch.qos.logback
</groupId>
<artifactId>
logback-classic
</artifactId>
<version>
1.4.14
</version>
<version>
1.5.6
</version>
<exclusions>
<exclusion>
<groupId>
org.dom4j
</groupId>
<artifactId>
dom4j
</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>
org.opengroup.osdu
</groupId>
@@ -105,6 +111,10 @@
<groupId>
software.amazon.ion
</groupId>
<artifactId>
ion-java
</artifactId>
</exclusion>
<exclusion>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-web
</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- https://mvnrepository.com/artifact/io.netty/netty-codec-http -->
@@ -129,19 +139,19 @@
<artifactId>
spring-boot-starter-tomcat
</artifactId>
</exclusion>
<exclusion>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-web
</artifactId>
</exclusion>
</exclusions>
<exclusion>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-web
</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-databind
</artifactId>
<version>
${jackson-databind.version}
</version>
</dependency>
<dependency>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-databind
</artifactId>
<version>
${jackson-databind.version}
</version>
</dependency>
<dependency>
<groupId>
io.netty
</groupId>
<artifactId>
netty-codec
</artifactId>
<version>
4.1.86.Final
</version>
@@ -154,7 +164,13 @@
<dependency>
<groupId>
org.springframework.security
</groupId>
<artifactId>
spring-security-config
</artifactId>
<version>
6.0.7
</version>
<version>
6.2.3
</version>
<exclusions>
<exclusion>
<groupId>
org.springframework.security
</groupId>
<artifactId>
spring-security-core
</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>
jakarta.inject
</groupId>
@@ -195,6 +211,10 @@
<groupId>
org.springframework
</groupId>
<artifactId>
spring-web
</artifactId>
</exclusion>
<exclusion>
<groupId>
org.springframework.security
</groupId>
<artifactId>
spring-security-core
</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Add other io.netty dependencies with version 4.1.109.Final here -->
@@ -206,19 +226,19 @@
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<version>
3.2.2
</version>
<executions>
<execution>
<goals>
<goal>
repackage
</goal>
</goals>
<configuration>
<classifier>
spring-boot
</classifier>
<mainClass>
org.opengroup.osdu.unitservice.UomOcpApplication
</mainClass>
</configuration>
</execution>
</executions>
<executions>
<execution>
<goals>
<goal>
repackage
</goal>
</goals>
<configuration>
<classifier>
spring-boot
</classifier>
<mainClass>
org.opengroup.osdu.unitservice.UomOcpApplication
</mainClass>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>
maven-surefire-plugin
</artifactId>
Loading