Skip to content

Commit

Permalink
[HOTFIX] Exclude org/apache/zeppelin/scio/avro/* once at pom.xml
Browse files Browse the repository at this point in the history
### What is this PR for?
Previously on apache#1676, I excluded path **twice**. It's my mistake! khalidhuseynov pointed that out (Thanks!).

### What type of PR is it?
Hot Fix

### How should this be tested?
Build with command `mvn clean package install -DskipTests -DskipRat`

### Questions:
* Does the licenses files need update? NO
* Is there breaking changes for older versions? NO
* Does this needs documentation? NO

Author: Jun Kim <[email protected]>

Closes apache#1706 from tae-jun/patch-2 and squashes the following commits:

ae6f00e [Jun Kim] Exclude org/apache/zeppelin/scio/avro/* once
  • Loading branch information
tae-jun authored and Leemoonsoo committed Nov 30, 2016
1 parent 752c8ab commit 249cf6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@
</goals>
<configuration>
<failOnViolation>true</failOnViolation>
<excludes>org/apache/zeppelin/interpreter/thrift/*,org/apache/zeppelin/scio/avro/*,org/apache/zeppelin/scio/avro/*</excludes>
<excludes>org/apache/zeppelin/interpreter/thrift/*,org/apache/zeppelin/scio/avro/*</excludes>
</configuration>
</execution>
<execution>
Expand All @@ -271,7 +271,7 @@
<goal>checkstyle-aggregate</goal>
</goals>
<configuration>
<excludes>org/apache/zeppelin/interpreter/thrift/*,org/apache/zeppelin/scio/avro/*,org/apache/zeppelin/scio/avro/*</excludes>
<excludes>org/apache/zeppelin/interpreter/thrift/*,org/apache/zeppelin/scio/avro/*</excludes>
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit 249cf6c

Please sign in to comment.