Skip to content

Commit

Permalink
Excavator: Upgrades Baseline to the latest version (#493)
Browse files Browse the repository at this point in the history
  • Loading branch information
svc-excavator-bot authored and bulldozer-bot[bot] committed Nov 9, 2019
1 parent c71a25f commit d28a066
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .baseline/checkstyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@
<property name="optional" value="true"/>
</module>
<module name="SuppressWarningsFilter"/> <!-- baseline-gradle: README.md -->
<module name="BeforeExecutionExclusionFileFilter">
<property name="fileNamePattern" value="module\-info\.java$"/>
</module>
<module name="TreeWalker">
<module name="SuppressionCommentFilter"/> <!-- baseline-gradle: README.md -->
<module name="SuppressionCommentFilter">
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ buildscript {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath 'com.netflix.nebula:gradle-info-plugin:5.2.0'
classpath 'com.netflix.nebula:nebula-publishing-plugin:14.1.1'
classpath 'com.palantir.baseline:gradle-baseline-java:2.28.1'
classpath 'com.palantir.baseline:gradle-baseline-java:2.29.0'
classpath 'com.palantir.gradle.consistentversions:gradle-consistent-versions:1.12.4'
classpath 'com.palantir.gradle.gitversion:gradle-git-version:0.12.2'
classpath 'gradle.plugin.org.inferred:gradle-processors:3.1.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import com.google.common.base.Suppliers;
import com.google.common.collect.ImmutableMap;
import com.palantir.logsafe.SafeArg;
import com.palantir.logsafe.UnsafeArg;
import com.palantir.tritium.api.functions.BooleanSupplier;
import java.util.Map;
import java.util.concurrent.TimeUnit;
Expand Down Expand Up @@ -112,7 +113,7 @@ private static Map<String, String> createInstrumentationSystemProperties() {
.collect(ImmutableMap.toImmutableMap(
entry -> String.valueOf(entry.getKey()),
entry -> String.valueOf(entry.getValue())));
log.debug("Reloaded instrumentation properties {}", map);
log.debug("Reloaded instrumentation properties {}", UnsafeArg.of("instrumentationProperties", map));
return map;
}
}

0 comments on commit d28a066

Please sign in to comment.