Skip to content

Commit c1917a7

Browse files
committed
Checkstyle fixes
1 parent 3e3d773 commit c1917a7

8 files changed

Lines changed: 11 additions & 19 deletions

File tree

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
command: chmod +x ./gradlew
1616
- run:
1717
name: Run tests
18-
command: ./gradlew build
18+
command: ./gradlew check
1919
- run:
2020
name: Save test results
2121
command: |

build.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ plugins {
66
id "com.github.spotbugs" version "1.6.5"
77
id 'com.bmuschko.nexus' version '2.3.1'
88
id "io.codearte.nexus-staging" version "0.20.0"
9+
id 'com.adarshr.test-logger' version '1.6.0'
910
}
1011

1112
group = 'com.imsweb'
@@ -51,6 +52,10 @@ jar {
5152
}
5253
}
5354

55+
testlogger {
56+
theme 'mocha'
57+
}
58+
5459
checkstyle {
5560
configFile = file("config/checkstyle/checkstyle.xml")
5661
}
@@ -60,7 +65,7 @@ spotbugs {
6065
excludeFilter = file('config/spotbugs/spotbugs-exclude.xml')
6166
}
6267
wrapper {
63-
gradleVersion = '5.1.1'
68+
gradleVersion = '5.2.1'
6469
distributionType = Wrapper.DistributionType.ALL
6570
}
6671

config/checkstyle/checkstyle-exclude.xml

Lines changed: 0 additions & 9 deletions
This file was deleted.

config/checkstyle/checkstyle.xml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.2//EN" "http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
33
<module name="Checker">
4-
<metadata name="com.atlas-sw.eclipse" value="I like Sydney" />
5-
<property name="severity" value="warning" />
4+
<property name="severity" value="error"/>
65
<module name="FileTabCharacter" />
76
<module name="TreeWalker">
87
<property name="tabWidth" value="4" />
@@ -162,8 +161,5 @@
162161
</module>
163162
<module name="HiddenField" />
164163
</module>
165-
<module name="SuppressionFilter">
166-
<property name="file" value="config/checkstyle/checkstyle-exclude.xml"/>
167-
</module>
168164
<module name="Translation" />
169165
</module>

gradle/wrapper/gradle-wrapper.jar

-987 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-all.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

gradlew

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)