-
Notifications
You must be signed in to change notification settings - Fork 180
Dependency upgrades 4.0 #240
base: master
Are you sure you want to change the base?
Changes from 5 commits
381b02f
b4257a9
47aba46
f6b619a
3fed6db
2495f10
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
<artifactId>api</artifactId> | ||
<packaging>jar</packaging> | ||
<name>${project.groupId}:${project.artifactId}</name> | ||
<version>3.4.1-SNAPSHOT</version> | ||
<version>4.0.0-SNAPSHOT</version> | ||
<description>Hygieia Rest API Layer</description> | ||
<url>https://github.com/Hygieia/api</url> | ||
|
||
|
@@ -44,6 +44,16 @@ | |
<organization>CapitalOne</organization> | ||
<organizationUrl>http://www.capitalone.com</organizationUrl> | ||
</developer> | ||
<developer> | ||
<id>erictice</id> | ||
<name>Eric Tice</name> | ||
<email>[email protected]</email> | ||
<url>https://github.com/erictice</url> | ||
<roles> | ||
<role>maintainer</role> | ||
</roles> | ||
<timezone>America/Chicago</timezone> | ||
</developer> | ||
</developers> | ||
|
||
<organization> | ||
|
@@ -54,26 +64,27 @@ | |
<parent> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-parent</artifactId> | ||
<version>1.5.22.RELEASE</version> | ||
<version>2.5.0</version> | ||
</parent> | ||
|
||
<properties> | ||
<!-- Dependencies --> | ||
<com.capitalone.dashboard.core.version>3.14.0</com.capitalone.dashboard.core.version> | ||
<spring-security.version>4.2.18.RELEASE</spring-security.version> | ||
<tomcat.version>8.5.57</tomcat.version> | ||
<com.capitalone.dashboard.core.version>4.0.0</com.capitalone.dashboard.core.version> | ||
<spring-security.version>5.5.1</spring-security.version> | ||
<tomcat.version>10.1.0-M2</tomcat.version> | ||
<commons-beanutils.version>1.9.4</commons-beanutils.version> | ||
<commons-codec.version>1.14</commons-codec.version> | ||
<commons-codec.version>1.15</commons-codec.version> | ||
<commons-collections4.version>4.1</commons-collections4.version> | ||
<commons-io.version>2.4</commons-io.version> | ||
<commons-lang.version>3.10</commons-lang.version> | ||
<fongo.version>2.2.0-RC2</fongo.version> | ||
<guava.version>29.0-jre</guava.version> | ||
<hibernate-validator.version>5.4.2.Final</hibernate-validator.version> | ||
<jackson.version>2.10.3</jackson.version> | ||
<hibernate-validator.version>6.1.5.Final</hibernate-validator.version> | ||
<jackson.version>2.11.4</jackson.version> | ||
<jasypt.version>1.18</jasypt.version> | ||
<logback.version>1.2.3</logback.version> | ||
<mongodb.version>3.6.4</mongodb.version> | ||
<log4j2.version>2.14.1</log4j2.version> | ||
<mongodb.version>4.0.6</mongodb.version> | ||
<jjwt.version>0.6.0</jjwt.version> | ||
<springfox.version>2.4.0</springfox.version> | ||
<assertj.version>3.9.0</assertj.version> | ||
|
@@ -84,8 +95,8 @@ | |
<jacoco.maven.plugin.version>0.8.3</jacoco.maven.plugin.version> | ||
<jacoco.coverage.percentage.minimum>0.200</jacoco.coverage.percentage.minimum> | ||
<jacoco.classes.missed.minimum>300</jacoco.classes.missed.minimum> | ||
<java.compilation.source>1.8</java.compilation.source> | ||
<java.compilation.target>1.8</java.compilation.target> | ||
<java.compilation.source>14</java.compilation.source> | ||
<java.compilation.target>14</java.compilation.target> | ||
<maven.compiler.plugin.version>3.1</maven.compiler.plugin.version> | ||
<maven.changes.plugin.version>2.12.1</maven.changes.plugin.version> | ||
<maven.checkstyle.plugin.version>3.0.0</maven.checkstyle.plugin.version> | ||
|
@@ -136,7 +147,27 @@ | |
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-web</artifactId> | ||
<version>2.5.3</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.apache.tomcat.embed</groupId> | ||
<artifactId>tomcat-embed-websocket</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
|
||
<!-- https://mvnrepository.com/artifact/log4j/log4j --> | ||
<dependency> | ||
<groupId>org.apache.logging.log4j</groupId> | ||
<artifactId>log4j-api</artifactId> | ||
<version>${log4j2.version}</version> | ||
</dependency> | ||
<dependency> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Critical OSS Vulnerability: pkg:maven/org.apache.commons/[email protected]4 Critical, 0 Severe, 0 Moderate and 0 Unknown vulnerabilities have been found in a transitive dependency of pkg:maven/org.apache.logging.log4j/[email protected] CRITICAL Vulnerabilities (4)CVE-2021-36090
CVE-2021-35517
CVE-2021-35515
CVE-2021-35516
(at-me in a reply with |
||
<groupId>org.apache.logging.log4j</groupId> | ||
<artifactId>log4j-core</artifactId> | ||
<version>${log4j2.version}</version> | ||
</dependency> | ||
|
||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
|
@@ -153,9 +184,16 @@ | |
<artifactId>spring-boot-starter-aop</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-configuration-processor</artifactId> | ||
<optional>true</optional> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-test</artifactId> | ||
<version>2.5.0</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
|
@@ -732,4 +770,4 @@ | |
</build> | ||
</profile> | ||
</profiles> | ||
</project> | ||
</project> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Critical OSS Vulnerability:
pkg:maven/log4j/[email protected]
1 Critical, 0 Severe, 1 Moderate and 0 Unknown vulnerabilities have been found in a direct dependency
CRITICAL Vulnerabilities (1)
CVE-2019-17571
MODERATE Vulnerabilities (1)
CVE-2020-9488
(at-me in a reply with
help
orignore
)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updates have been checked in