Add errorprone back into build

This commit is contained in:
James Agnew 2019-12-15 09:42:51 -05:00
parent 89f819ae74
commit e1f2d044ed
4 changed files with 5 additions and 5 deletions

View File

@ -25,7 +25,7 @@ jobs:
inputs: inputs:
goals: 'clean install' goals: 'clean install'
# These are Maven CLI options (and show up in the build logs) - "-nsu"=Don't update snapshots. We can remove this when Maven OSS is more healthy # These are Maven CLI options (and show up in the build logs) - "-nsu"=Don't update snapshots. We can remove this when Maven OSS is more healthy
options: '-P ALLMODULES,JACOCO,CI -nsu' options: '-P ALLMODULES,JACOCO,CI,ERRORPRONE -nsu'
# These are JVM options (and don't show up in the build logs) # These are JVM options (and don't show up in the build logs)
mavenOptions: '-Xmx2048m $(MAVEN_OPTS) -Dorg.slf4j.simpleLogger.showDateTime=true -Dorg.slf4j.simpleLogger.dateTimeFormat=HH:mm:ss,SSS -Duser.timezone=America/Toronto' mavenOptions: '-Xmx2048m $(MAVEN_OPTS) -Dorg.slf4j.simpleLogger.showDateTime=true -Dorg.slf4j.simpleLogger.dateTimeFormat=HH:mm:ss,SSS -Duser.timezone=America/Toronto'
jdkVersionOption: 1.11 jdkVersionOption: 1.11

View File

@ -130,7 +130,7 @@ public class ValidationResult {
line = next.getLocationLine().toString(); line = next.getLocationLine().toString();
} }
String col = unknown; String col = unknown;
if (next.getLocationCol() != null && next.getLocationCol() != null) { if (next.getLocationCol() != null && next.getLocationCol() != -1) {
col = next.getLocationCol().toString(); col = next.getLocationCol().toString();
} }
if (!unknown.equals(line) || !unknown.equals(col)) { if (!unknown.equals(line) || !unknown.equals(col)) {

View File

@ -2,7 +2,7 @@
<th:block th:each="version : ${changelog.versions}"> <th:block th:each="version : ${changelog.versions}">
# Smile CDR <th:block th:text="${version}"/> <th:block th:if="${changelog.changes.get(version).codename} != null" th:text="' (' + ${changelog.changes.get(version).codename} + ')'"/> <th:block th:if="${changelog.releaseDate} == null">(Prerelease)</th:block> # Smile CDR <th:block th:text="${version}"/> <th:block th:if="${changelog.changes.get(version).codename} != null" th:text="' (' + ${changelog.changes.get(version).codename} + ')'"/> <th:block th:if="${changelog.changes.get(version).releaseDate} == null">(Prerelease)</th:block>
## Release Information ## Release Information

View File

@ -623,7 +623,7 @@
<commons_lang3_version>3.9</commons_lang3_version> <commons_lang3_version>3.9</commons_lang3_version>
<derby_version>10.14.2.0</derby_version> <derby_version>10.14.2.0</derby_version>
<!--<derby_version>10.15.1.3</derby_version>--> <!--<derby_version>10.15.1.3</derby_version>-->
<error_prone_annotations_version>2.3.3</error_prone_annotations_version> <error_prone_annotations_version>2.3.4</error_prone_annotations_version>
<error_prone_core_version>2.3.3</error_prone_core_version> <error_prone_core_version>2.3.3</error_prone_core_version>
<guava_version>28.0-jre</guava_version> <guava_version>28.0-jre</guava_version>
<gson_version>2.8.5</gson_version> <gson_version>2.8.5</gson_version>
@ -1308,7 +1308,7 @@
<dependency> <dependency>
<groupId>org.mockito</groupId> <groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId> <artifactId>mockito-core</artifactId>
<version>3.1.0</version> <version>3.2.0</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.postgresql</groupId> <groupId>org.postgresql</groupId>