Skip to content

Commit 9056765

Browse files
committed
make test and checkstyle working with new plugin graphhopper#1288
1 parent f6a64ed commit 9056765

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ before_script:
3838
before_script:
3939
- _JAVA_OPTIONS=
4040
script:
41-
- mvn clean test verify checkstyle:check findbugs:check forbiddenapis:check -B
41+
# separate due to #1288
42+
- mvn clean test verify -B && mvn checkstyle:check findbugs:check forbiddenapis:check -B
4243

4344
after_success:
4445
# deploy snapshot artifacts to sonatype and if tagged deploy the release to maven central
File renamed without changes.
File renamed without changes.

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
<artifactId>maven-checkstyle-plugin</artifactId>
145145
<version>2.17</version>
146146
<configuration>
147-
<configLocation>checkstyle.xml</configLocation>
147+
<configLocation>core/files/checkstyle.xml</configLocation>
148148
<failsOnError>true</failsOnError>
149149
<consoleOutput>true</consoleOutput>
150150
<linkXRef>false</linkXRef>
@@ -158,7 +158,7 @@
158158
<configuration>
159159
<maxRank>4</maxRank>
160160
<failOnError>true</failOnError>
161-
<excludeFilterFile>findbugs-exclude.xml</excludeFilterFile>
161+
<excludeFilterFile>core/files/findbugs-exclude.xml</excludeFilterFile>
162162
</configuration>
163163
</plugin>
164164
<plugin>

0 commit comments

Comments
 (0)