Github user zhangminglei commented on a diff in the pull request:
https://github.com/apache/flink/pull/5904#discussion_r183790505
--- Diff: pom.xml ---
@@ -636,6 +636,63 @@ under the License.
<profiles>
+ <profile>
+ <id>fast</id>
+ <activation>
+ <property>
+ <name>fast</name>
+ </property>
+ </activation>
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+
<groupId>org.apache.rat</groupId>
+
<artifactId>apache-rat-plugin</artifactId>
+ <configuration>
+
<skip>true</skip>
+ </configuration>
+ </plugin>
+ <plugin>
+
<groupId>org.apache.maven.plugins</groupId>
+
<artifactId>maven-checkstyle-plugin</artifactId>
+ <configuration>
+
<skip>true</skip>
+ </configuration>
--- End diff --
That's good. I think this works because of ```.travis.yml``` enable it at
least. Correct ?---
