Skip to content

Commit a438d34

Browse files
authored
Maven compiler plugin (wireapp#49)
* dropped slf4j-log4j12 * Logger fix
1 parent bb3499a commit a438d34

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

pom.xml

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.wire</groupId>
88
<artifactId>lithium</artifactId>
9-
<version>3.0.0</version>
9+
<version>3.0.1</version>
1010
<packaging>jar</packaging>
1111

1212
<properties>
@@ -120,7 +120,8 @@
120120
<artifactId>maven-compiler-plugin</artifactId>
121121
<version>3.8.1</version>
122122
<configuration>
123-
<release>14</release>
123+
<source>1.8</source>
124+
<target>1.8</target>
124125
</configuration>
125126
</plugin>
126127
<plugin>

src/main/java/com/wire/lithium/Server.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ private void runHealthChecks() {
266266
for (String name : results.keySet()) {
267267
final HealthCheck.Result result = results.get(name);
268268
if (!result.isHealthy()) {
269-
Logger.error("% failed with: %s", name, result.getMessage());
269+
Logger.error("%s failed with: %s", name, result.getMessage());
270270
throw new RuntimeException(result.getError());
271271
}
272272
}

0 commit comments

Comments
 (0)