diff options
author | sourabh_sourabh <sourabh.sourabh@est.tech> | 2022-05-04 11:38:52 +0100 |
---|---|---|
committer | sourabh_sourabh <sourabh.sourabh@est.tech> | 2022-05-09 23:58:14 +0100 |
commit | df26bc38a75f10650ce5785cdc9bd7b9516f6f25 (patch) | |
tree | 9bf05cfca390e23e1cc31d76d9fb99ceadf090a9 /pom.xml | |
parent | ce9cdeea8abc5c2f47d1456e6c14bd2935e638ce (diff) |
Security Logging Fields
- logback encoder and sleuth dependencies are added.
- New appender is added to log JSON format content on console.
Issue-ID: CPS-986
Signed-off-by: sourabh_sourabh <sourabh.sourabh@est.tech>
Change-Id: Id7e4d836188da54b94144076a8755e4a2643a7ad
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -82,6 +82,16 @@ <type>pom</type> <scope>import</scope> </dependency> + <dependency> + <groupId>net.logstash.logback</groupId> + <artifactId>logstash-logback-encoder</artifactId> + <version>7.0.1</version> + </dependency> + <dependency> + <groupId>org.codehaus.janino</groupId> + <artifactId>janino</artifactId> + <version>3.1.7</version> + </dependency> </dependencies> </dependencyManagement> <dependencies> @@ -185,6 +195,18 @@ <artifactId>kafka</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.springframework.cloud</groupId> + <artifactId>spring-cloud-starter-sleuth</artifactId> + </dependency> + <dependency> + <groupId>net.logstash.logback</groupId> + <artifactId>logstash-logback-encoder</artifactId> + </dependency> + <dependency> + <groupId>org.codehaus.janino</groupId> + <artifactId>janino</artifactId> + </dependency> </dependencies> <build> <resources> |