Skip to content

Commit

Permalink
chore: re-enable fail on warnings (confluentinc#4880)
Browse files Browse the repository at this point in the history
Forgot to do this in confluentinc#4871

Co-authored-by: Andy Coates <[email protected]>
  • Loading branch information
big-andy-coates and big-andy-coates authored Mar 24, 2020
1 parent cb57283 commit 439ecbc
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 88 deletions.
33 changes: 0 additions & 33 deletions ksql-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -140,39 +140,6 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>compile</id>
<phase>process-sources</phase>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<compilerArgs>
<arg>-Xlint:all,-options,-path</arg>
<arg>-parameters</arg>
<arg>-Werror</arg>
</compilerArgs>
</configuration>
</execution>
<execution>
<id>test-compile</id>
<phase>process-test-sources</phase>
<goals>
<goal>testCompile</goal>
</goals>
<configuration>
<compilerArgs>
<arg>-Xlint:all,-options,-path</arg>
<arg>-parameters</arg>
</compilerArgs>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId>
Expand Down
33 changes: 6 additions & 27 deletions ksql-version-metrics-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,33 +94,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>compile</id>
<phase>process-sources</phase>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<compilerArgs>
<arg>-Xlint:all,-options,-path,-unchecked</arg>
<arg>-Werror</arg>
</compilerArgs>
</configuration>
</execution>
<execution>
<id>test-compile</id>
<phase>process-test-sources</phase>
<goals>
<goal>testCompile</goal>
</goals>
<configuration>
<compilerArgs>
<arg>-Xlint:all,-options,-path,-unchecked</arg>
</compilerArgs>
</configuration>
</execution>
</executions>
<configuration>
<compilerArgs>
<arg>-Xlint:all,-options,-path,-unchecked</arg>
<arg>-Werror</arg>
</compilerArgs>
</configuration>
</plugin>

<plugin>
Expand Down
34 changes: 6 additions & 28 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -317,34 +317,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>compile</id>
<phase>process-sources</phase>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<compilerArgs>
<arg>-Xlint:all,-options,-path</arg>
<arg>-parameters</arg>
<arg>-Werror</arg>
</compilerArgs>
</configuration>
</execution>
<execution>
<id>test-compile</id>
<phase>process-test-sources</phase>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<compilerArgs>
<arg>-Xlint:all,-options,-path</arg>
</compilerArgs>
</configuration>
</execution>
</executions>
<configuration>
<compilerArgs>
<arg>-Xlint:all,-options,-path</arg>
<arg>-Werror</arg>
</compilerArgs>
</configuration>
</plugin>

<plugin>
Expand Down

0 comments on commit 439ecbc

Please sign in to comment.