Skip to content

Commit 6cd1c12

Browse files
committed
Exclude jacoco and checkstyle plugin in benchmark module
ref #11
1 parent fc29a75 commit 6cd1c12

2 files changed

Lines changed: 14 additions & 6 deletions

File tree

modules/benchmark-jmh/pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,20 @@
2323

2424
<build>
2525
<plugins>
26+
<plugin>
27+
<groupId>org.apache.maven.plugins</groupId>
28+
<artifactId>maven-checkstyle-plugin</artifactId>
29+
<configuration>
30+
<skip>true</skip>
31+
</configuration>
32+
</plugin>
33+
<plugin>
34+
<groupId>org.jacoco</groupId>
35+
<artifactId>jacoco-maven-plugin</artifactId>
36+
<configuration>
37+
<skip>true</skip>
38+
</configuration>
39+
</plugin>
2640
<plugin>
2741
<groupId>com.github.chrisdchristo</groupId>
2842
<artifactId>capsule-maven-plugin</artifactId>

pom.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@
6666
<version>3.0.0</version>
6767
<configuration>
6868
<configLocation>checkstyle.xml</configLocation>
69-
<excludes>**/benchmark-jmh/**</excludes>
7069
</configuration>
7170
<dependencies>
7271
<dependency>
@@ -114,11 +113,6 @@
114113
</goals>
115114
</execution>
116115
</executions>
117-
<configuration>
118-
<excludes>
119-
<exclude>**/benchmark-jmh/**</exclude>
120-
</excludes>
121-
</configuration>
122116
</plugin>
123117
<plugin>
124118
<groupId>org.eluder.coveralls</groupId>

0 commit comments

Comments
 (0)