File tree Expand file tree Collapse file tree
conjure-java-jaxrs-client/src/test/java/com/palantir/conjure/java/client/jaxrs
conjure-java-retrofit2-client/src/test/java/com/palantir/conjure/java/client/retrofit2 Expand file tree Collapse file tree Original file line number Diff line number Diff line change 112112 <module name =" EmptyStatement" /> <!-- Java Style Guide: One statement per line -->
113113 <module name =" EqualsHashCode" />
114114 <module name =" FallThrough" /> <!-- Java Style Guide: Fall-through: commented -->
115- <module name =" FinalClass" /> <!-- Java Coding Guidelines: Private constructors -->
116115 <module name =" GenericWhitespace" > <!-- Java Style Guide: Horizontal whitespace -->
117116 <message key =" ws.followed" value =" GenericWhitespace ''{0}'' is followed by whitespace." />
118117 <message key =" ws.preceded" value =" GenericWhitespace ''{0}'' is preceded with whitespace." />
371370 <property name =" format" value =" \bIOUtils\.toString\(" />
372371 <property name =" message" value =" Prefer Guava''s [CharStreams,Files,Resources].toString to avoid charset/stream closing issues." />
373372 </module >
374- <module name =" RegexpSinglelineJava" >
375- <property name =" format" value =" static enum" />
376- <property name =" message" value =" Redundant ''static'' modifier." />
377- </module >
378373 <module name =" RegexpSinglelineJava" >
379374 <property name =" format" value =" \/\/TODO|\/\/ TODO(?!\([^()\s]+\): )" />
380375 <property name =" message" value =" TODO format: // TODO(#issue): explanation" />
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ buildscript {
99 classpath ' com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
1010 classpath ' com.netflix.nebula:gradle-dependency-lock-plugin:7.0.1'
1111 classpath ' com.netflix.nebula:nebula-publishing-plugin:14.1.1'
12- classpath ' com.palantir.baseline:gradle-baseline-java:2.27.0 '
12+ classpath ' com.palantir.baseline:gradle-baseline-java:2.28.3 '
1313 classpath ' com.palantir.gradle.gitversion:gradle-git-version:0.12.2'
1414 classpath ' gradle.plugin.org.inferred:gradle-processors:3.1.0'
1515 classpath ' com.palantir.gradle.consistentversions:gradle-consistent-versions:1.12.4'
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public abstract class TestBase {
2929
3030 protected static final UserAgent AGENT = UserAgent .of (UserAgent .Agent .of ("test" , "0.0.1" ));
3131
32- protected static final ClientConfiguration createTestConfig (String ... uri ) {
32+ protected static ClientConfiguration createTestConfig (String ... uri ) {
3333 SslConfiguration sslConfig = SslConfiguration .of (Paths .get ("src/test/resources/trustStore.jks" ));
3434 return ClientConfigurations .of (
3535 ImmutableList .copyOf (uri ),
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ abstract class TestBase {
2929
3030 protected static final UserAgent AGENT = UserAgent .of (UserAgent .Agent .of ("test" , "0.0.1" ));
3131
32- protected static final ClientConfiguration createTestConfig (String ... uri ) {
32+ protected static ClientConfiguration createTestConfig (String ... uri ) {
3333 SslConfiguration sslConfig = SslConfiguration .of (Paths .get ("src/test/resources/trustStore.jks" ));
3434 return ClientConfigurations .of (
3535 ImmutableList .copyOf (uri ),
You can’t perform that action at this time.
0 commit comments