This repository has been archived by the owner on May 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mysql and Keycloak Building Block + Several new Dependencies (#2)
* Add Dependency Building Block for Keycloak Add Dependency Building Block for MySQL Add Prometheus and Micrometer to Spring Boot Building Block Add CBOR Cose Dependency Versions Add Digital Covid Certificate Versions Add PDF Box Version Add Google ZXing Versions Add OpenCSV Version Add Keycloak Versions Add ModelMapper Version App Spring Rest Docs Plugin Versions * Update OWASP Dependency Check Add Keycloak 15.1.1 to OWASP Suppression
- Loading branch information
Showing
5 changed files
with
203 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>cwa-parent-keycloak</artifactId> | ||
<packaging>pom</packaging> | ||
|
||
<name>cwa-parent-keycloak</name> | ||
<description>CWA Backend Service Parent POM with dependencies for Services using Keycloak.</description> | ||
|
||
<parent> | ||
<groupId>app.coronawarn</groupId> | ||
<artifactId>cwa-parent</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>${project.parent.groupId}</groupId> | ||
<artifactId>cwa-parent-spring-boot</artifactId> | ||
<version>${project.parent.version}</version> | ||
<type>pom</type> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.keycloak</groupId> | ||
<artifactId>keycloak-spring-boot-starter</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.c4-soft.springaddons</groupId> | ||
<artifactId>spring-security-oauth2-test-addons</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.c4-soft.springaddons</groupId> | ||
<artifactId>spring-security-oauth2-test-webmvc-addons</artifactId> | ||
</dependency> | ||
</dependencies> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>cwa-parent-mysql-persistence</artifactId> | ||
<packaging>pom</packaging> | ||
|
||
<name>cwa-parent-mysql-persistence</name> | ||
<description>CWA Backend Service Parent POM with dependencies for Services building on MySQL.</description> | ||
|
||
<parent> | ||
<groupId>app.coronawarn</groupId> | ||
<artifactId>cwa-parent</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>${project.parent.groupId}</groupId> | ||
<artifactId>cwa-parent-spring-boot</artifactId> | ||
<version>${project.parent.version}</version> | ||
<type>pom</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-data-jpa</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.h2database</groupId> | ||
<artifactId>h2</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>mysql</groupId> | ||
<artifactId>mysql-connector-java</artifactId> | ||
<scope>runtime</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.liquibase</groupId> | ||
<artifactId>liquibase-core</artifactId> | ||
</dependency> | ||
</dependencies> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd"> | ||
|
||
<suppress> | ||
<notes>Updating of Keycloak Lib is not possible at the moment. Security risk is not affecting CWA components.</notes> | ||
<cve>CVE-2022-1466</cve> | ||
<cve>CVE-2021-20323</cve> | ||
</suppress> | ||
|
||
</suppressions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters