Skip to content

Commit

Permalink
JENKINS-50970 SLF4J logging not working in Swarm client (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil authored Jun 1, 2019
1 parent c0ad48e commit f04e9cc
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
<project.build.outputEncoding>UTF-8</project.build.outputEncoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<slf4j.version>1.7.26</slf4j.version>
</properties>

<repositories>
Expand All @@ -40,7 +41,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.1</version>
<version>3.2.1</version>
<executions>
<execution>
<phase>package</phase>
Expand Down Expand Up @@ -98,12 +99,17 @@
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.1</version>
<scope>provided</scope>
<scope>provided</scope><!-- by jcl-over-slf4j -->
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>1.7.22</version>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.main</groupId>
Expand Down

0 comments on commit f04e9cc

Please sign in to comment.