Skip to content

Commit

Permalink
Exclude jacoco and checkstyle plugin in benchmark module
Browse files Browse the repository at this point in the history
ref #11
  • Loading branch information
patrickfav committed Aug 11, 2018
1 parent fc29a75 commit 6cd1c12
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
14 changes: 14 additions & 0 deletions modules/benchmark-jmh/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,20 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>com.github.chrisdchristo</groupId>
<artifactId>capsule-maven-plugin</artifactId>
Expand Down
6 changes: 0 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@
<version>3.0.0</version>
<configuration>
<configLocation>checkstyle.xml</configLocation>
<excludes>**/benchmark-jmh/**</excludes>
</configuration>
<dependencies>
<dependency>
Expand Down Expand Up @@ -114,11 +113,6 @@
</goals>
</execution>
</executions>
<configuration>
<excludes>
<exclude>**/benchmark-jmh/**</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
Expand Down

0 comments on commit 6cd1c12

Please sign in to comment.