Skip to content

Commit

Permalink
Fix logging deps issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rpoet-jh committed Dec 11, 2023
1 parent 47a9367 commit cd73ef2
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 18 deletions.
11 changes: 5 additions & 6 deletions pass-deposit-services/deposit-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,11 @@
<artifactId>log4j-over-slf4j</artifactId>
</dependency>

<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>

<dependency>
<groupId>org.eclipse.pass</groupId>
<artifactId>pass-data-client</artifactId>
Expand Down Expand Up @@ -188,12 +193,6 @@
<scope>runtime</scope>
</dependency>

<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>runtime</scope>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
Expand Down
11 changes: 5 additions & 6 deletions pass-deposit-services/deposit-util/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@
<artifactId>slf4j-api</artifactId>
</dependency>

<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
Expand All @@ -59,12 +64,6 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
Expand Down
9 changes: 6 additions & 3 deletions pass-deposit-services/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,8 @@
</scm>

<properties>
<scp.port>22</scp.port>

<slf4j.version>2.0.6</slf4j.version>
<logback-classic.version>1.4.12</logback-classic.version>
<spring-framework.version>5.1.4.RELEASE</spring-framework.version>
<commons-net.version>3.9.0</commons-net.version>
<commons-compress.version>1.21</commons-compress.version>
<commons-io.version>2.6</commons-io.version>
Expand Down Expand Up @@ -105,6 +102,12 @@
<version>${logback-classic.version}</version>
</dependency>

<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback-classic.version}</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
Expand Down
3 changes: 0 additions & 3 deletions pass-notification-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<scp.port>22</scp.port>
<!-- this overrides the spring-boot-maven-plugin.version property in the parent pom -->
<spring-boot-maven-plugin.version>3.0.7</spring-boot-maven-plugin.version>
<commons-io.version>2.11.0</commons-io.version>
<junit.jupiter.version>5.9.3</junit.jupiter.version>
<handlebars.version>4.3.0</handlebars.version>
Expand Down

0 comments on commit cd73ef2

Please sign in to comment.