File tree Expand file tree Collapse file tree 3 files changed +11
-5
lines changed
gradle-incremental-configuration-cache/src/main/java/com/palantir/gradle/configcache/incremental Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 4545 <property name =" max" value =" 120" />
4646 <property name =" ignorePattern" value =" ^package.*|^import.*|a href|href|http://|https://|ftp://|\{@link" />
4747 </module >
48+ <module name =" SuppressWithPlainTextCommentFilter" > <!-- Suppression to prevent LineLength Check from flagging lines in Text-blocks -->
49+ <property name =" checkFormat" value =" LineLength" />
50+ <property name =" offCommentFormat" value =" ^.*""" \s*$" />
51+ <property name =" onCommentFormat" value =" ^\s*""" \s*(?:[,;]|.+)$" />
52+ </module >
4853 <module name =" TreeWalker" >
4954 <module name =" SuppressionCommentFilter" /> <!-- baseline-gradle: README.md -->
5055 <module name =" SuppressionCommentFilter" >
407412 <property name =" allowMissingReturnTag" value =" true" />
408413 <property name =" allowedAnnotations" value =" Override, Test" />
409414 </module >
410- <module name =" JavadocStyle" /> <!-- Java Style Guide: Javadoc -->
415+ <module name =" JavadocStyle" ><!-- Java Style Guide: Javadoc -->
416+ <property name =" checkFirstSentence" value =" false" />
417+ </module >
411418 <module name =" JavadocTagContinuationIndentation" > <!-- Java Style Guide: At-clauses -->
412419 <property name =" offset" value =" 0" />
413420 </module >
432439 <property name =" format" value =" ^_?[a-z][a-zA-Z0-9]+$" />
433440 <message key =" name.invalidPattern" value =" Parameter name ''{0}'' must match pattern ''{1}''." />
434441 </module >
435- <module name =" SummaryJavadocCheck" > <!-- Java Coding Guidelines: Javadoc -->
436- <property name =" forbiddenSummaryFragments" value =" ^@return the *|^This method returns |^A [{]@code [a-zA-Z0-9]+[}]( is a )" />
437- </module >
438442
439443 <!-- Stricter checks end -->
440444 </module >
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ buildscript {
1414 classpath ' com.palantir.javaformat:gradle-palantir-java-format:2.81.0'
1515 classpath ' com.palantir.suppressible-error-prone:gradle-suppressible-error-prone:2.24.0'
1616 classpath ' com.palantir.gradle.consistentversions:gradle-consistent-versions:3.6.0'
17- classpath ' com.palantir.baseline:gradle-baseline-java:6.54 .0'
17+ classpath ' com.palantir.baseline:gradle-baseline-java:6.67 .0'
1818 classpath ' com.palantir.gradle.gitversion:gradle-git-version:4.1.0'
1919 classpath ' com.palantir.gradle.guide:gradle-guide:1.13.0'
2020 classpath ' com.palantir.gradle.idea-configuration:gradle-idea-configuration:0.7.0'
Original file line number Diff line number Diff line change 2121import com .palantir .gradle .configcache .incremental .RunResult .Failure ;
2222import com .palantir .gradle .utils .circleciartifacts .ArtifactLocation ;
2323import com .palantir .gradle .utils .circleciartifacts .CircleCiArtifacts ;
24+ import com .palantir .logsafe .Unsafe ;
2425import java .io .IOException ;
2526import java .nio .file .Files ;
2627import java .nio .file .Path ;
@@ -56,6 +57,7 @@ public final void check() throws IOException {
5657 }
5758 }
5859
60+ @ Unsafe
5961 private String errorMessage (String output ) {
6062 try {
6163 String artifactPath = "configuration-cache-validation-report/validation-report.txt" ;
You can’t perform that action at this time.
0 commit comments