Skip to content

Commit d3ea576

Browse files
authored
turn failOnError on (#147)
1 parent 8c6fd05 commit d3ea576

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ limitations under the License.
173173
<plugins>
174174

175175
<!-- Compile w/ ErrorProne (see https://errorprone.info) -->
176+
<!-- ie runs on: mvn compile -->
176177
<plugin>
177178
<groupId>org.apache.maven.plugins</groupId>
178179
<artifactId>maven-compiler-plugin</artifactId>
@@ -218,7 +219,7 @@ limitations under the License.
218219
</dependency>
219220
</dependencies>
220221
<configuration>
221-
<failOnError>false</failOnError><!-- Let's not fail for now -->
222+
<failOnError>true</failOnError>
222223
<effort>Max</effort>
223224
<threshold>Low</threshold>
224225
<includeTests>true</includeTests>
@@ -267,7 +268,7 @@ limitations under the License.
267268
</dependency>
268269
</dependencies>
269270
<configuration>
270-
<failOnViolation>false</failOnViolation>
271+
<failOnViolation>true</failOnViolation>
271272
<printFailingErrors>true</printFailingErrors>
272273
<skipEmptyReport>false</skipEmptyReport>
273274
<linkXRef>false</linkXRef>

0 commit comments

Comments
 (0)