Skip to content
Snippets Groups Projects

Vulnerability Fixing and POM Reorganization

Merged Daniel Scholl (MS] requested to merge vulnerabilities into master
Files
3
@@ -31,6 +31,9 @@
<properties>
<core-lib-azure.version>2.0.2</core-lib-azure.version>
<jakarta.json.version>2.1.3</jakarta.json.version>
<jakarta.json.glassfish.version>2.0.1</jakarta.json.glassfish.version>
<parsson.version>1.1.7</parsson.version>
<!-- Test Dependencies -->
<cucumber.version>7.20.1</cucumber.version>
<!-- Plugin Versions -->
@@ -90,6 +93,10 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
</dependency>
<!-- Azure Dependencies -->
<!-- Versions managed by azure core library -->
@@ -102,12 +109,34 @@
<artifactId>spring-cloud-azure-starter-active-directory</artifactId>
</dependency>
<!-- Project Dependencies -->
<dependency>
<groupId>jakarta.json</groupId>
<artifactId>jakarta.json-api</artifactId>
<version>${jakarta.json.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>jakarta.json</artifactId>
<version>${jakarta.json.glassfish.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.parsson</groupId>
<artifactId>parsson</artifactId>
<version>${parsson.version}</version>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-java</artifactId>
@@ -149,6 +178,7 @@
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco-plugin.version}</version>
<configuration>
<outputDirectory>${project.reporting.outputDirectory}/jacoco</outputDirectory>
<excludes>
<exclude>**/*org/opengroup/osdu/schema/azure/definitions/**</exclude>
<exclude>**/*org/opengroup/osdu/schema/azure/di/**Config.class</exclude>
Loading