Skip to content

Commit

Permalink
Merge pull request #845 from /issues/844-logstash-logback-encoder
Browse files Browse the repository at this point in the history
Fix #844: Add logstash-logback-encoder dependency
  • Loading branch information
romanstrobl authored Aug 29, 2023
2 parents 7ffa9cf + ae3d6be commit c7e6f67
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
6 changes: 6 additions & 0 deletions enrollment-server-onboarding/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,12 @@
<artifactId>postgresql</artifactId>
</dependency>

<!-- Logging -->
<dependency>
<groupId>net.logstash.logback</groupId>
<artifactId>logstash-logback-encoder</artifactId>
</dependency>

<!-- Test Dependencies -->
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down
6 changes: 6 additions & 0 deletions enrollment-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,12 @@
<version>1.10.0</version>
</dependency>

<!-- Logging -->
<dependency>
<groupId>net.logstash.logback</groupId>
<artifactId>logstash-logback-encoder</artifactId>
</dependency>

<!-- Test Dependencies -->
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down
8 changes: 8 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@
<powerauth-push.version>1.5.0-SNAPSHOT</powerauth-push.version>

<bcprov-jdk18on.version>1.76</bcprov-jdk18on.version>
<logstash.version>7.4</logstash.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -206,6 +207,13 @@
<version>${bcprov-jdk18on.version}</version>
</dependency>

<!-- Logging -->
<dependency>
<groupId>net.logstash.logback</groupId>
<artifactId>logstash-logback-encoder</artifactId>
<version>${logstash.version}</version>
</dependency>

<!-- Documentation -->
<dependency>
<groupId>org.springdoc</groupId>
Expand Down

0 comments on commit c7e6f67

Please sign in to comment.