-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update jackson-databind version to 2.9.9.1
- Loading branch information
1 parent
658a53f
commit 1ecc179
Showing
1 changed file
with
52 additions
and
47 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,58 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
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> | ||
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>cf-java-logging-support-servlet</artifactId> | ||
<packaging>jar</packaging> | ||
<artifactId>cf-java-logging-support-servlet</artifactId> | ||
<packaging>jar</packaging> | ||
|
||
<name>cf-java-logging-support-servlet</name> | ||
<parent> | ||
<groupId>com.sap.hcp.cf.logging</groupId> | ||
<artifactId>cf-java-logging-support-parent</artifactId> | ||
<version>3.0.1</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
<name>cf-java-logging-support-servlet</name> | ||
<parent> | ||
<groupId>com.sap.hcp.cf.logging</groupId> | ||
<artifactId>cf-java-logging-support-parent</artifactId> | ||
<version>3.0.1</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
|
||
<properties> | ||
<servlet.api.version>3.0.1</servlet.api.version> | ||
</properties> | ||
<properties> | ||
<servlet.api.version>3.0.1</servlet.api.version> | ||
</properties> | ||
|
||
<dependencies> | ||
<!-- servlet api --> | ||
<dependency> | ||
<groupId>javax.servlet</groupId> | ||
<artifactId>javax.servlet-api</artifactId> | ||
<version>${servlet.api.version}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.sap.hcp.cf.logging</groupId> | ||
<artifactId>cf-java-logging-support-core</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
<!-- we need our logback implementation for testing! --> | ||
<dependency> | ||
<groupId>com.sap.hcp.cf.logging</groupId> | ||
<artifactId>cf-java-logging-support-logback</artifactId> | ||
<version>${project.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>ch.qos.logback</groupId> | ||
<artifactId>logback-classic</artifactId> | ||
<version>${logback.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<!-- Library for token signing/verification --> | ||
<dependency> | ||
<groupId>com.auth0</groupId> | ||
<artifactId>java-jwt</artifactId> | ||
<version>3.8.1</version> | ||
</dependency> | ||
</dependencies> | ||
<dependencies> | ||
<!-- servlet api --> | ||
<dependency> | ||
<groupId>javax.servlet</groupId> | ||
<artifactId>javax.servlet-api</artifactId> | ||
<version>${servlet.api.version}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.sap.hcp.cf.logging</groupId> | ||
<artifactId>cf-java-logging-support-core</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
<!-- we need our logback implementation for testing! --> | ||
<dependency> | ||
<groupId>com.sap.hcp.cf.logging</groupId> | ||
<artifactId>cf-java-logging-support-logback</artifactId> | ||
<version>${project.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>ch.qos.logback</groupId> | ||
<artifactId>logback-classic</artifactId> | ||
<version>${logback.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<!-- Library for token signing/verification --> | ||
<dependency> | ||
<groupId>com.auth0</groupId> | ||
<artifactId>java-jwt</artifactId> | ||
<version>3.8.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.fasterxml.jackson.core</groupId> | ||
<artifactId>jackson-databind</artifactId> | ||
<version>2.9.9.1</version> | ||
</dependency> | ||
</dependencies> | ||
</project> |