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.
Add Building Block for SAP Cloud Foundry (#4)
Update JJWT to 0.11.5 Add Nimbus-Jose-JWT Library Add SAP Cloud Foundry Dependencies Add Mapstruct Dependency Add Maven Compiler Plugin Config to use Mapstruct and Lombok
- Loading branch information
Showing
2 changed files
with
88 additions
and
5 deletions.
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
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,33 @@ | ||
<?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-sap-cf</artifactId> | ||
<packaging>pom</packaging> | ||
|
||
<name>cwa-parent-sap-cf</name> | ||
<description>CWA Backend Service Parent POM with dependencies for SAP Cloud Foundry.</description> | ||
|
||
<parent> | ||
<groupId>app.coronawarn</groupId> | ||
<artifactId>cwa-parent</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>io.pivotal.cfenv</groupId> | ||
<artifactId>java-cfenv-boot</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.sap.cloud.sdk.cloudplatform</groupId> | ||
<artifactId>scp-cf</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.sap.hcp.cf.logging</groupId> | ||
<artifactId>cf-java-logging-support-logback</artifactId> | ||
</dependency> | ||
</dependencies> | ||
</project> |