Skip to content

Commit 6487b6f

Browse files
committed
Fix build failure in checkstyle during integration test
1 parent b684ab7 commit 6487b6f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/resources/project-test.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ xsi:noNamespaceSchemaLocation="projectlist_1_1_0.xsd">
88
<name>checkstyle</name>
99
<type>git</type>
1010
<connection>https://github.com/checkstyle/checkstyle</connection>
11-
<tag>checkstyle-8.0</tag>
11+
<tag>checkstyle-8.10</tag>
1212
<exclude-pattern>.*/target/test-classes/com/puppycrawl/tools/checkstyle/.*</exclude-pattern>
1313
<exclude-pattern>.*/target/generated-sources/.*</exclude-pattern>
1414

@@ -17,7 +17,9 @@ if test -e classpath.txt; then
1717
exit
1818
fi
1919
20-
mvn test-compile
20+
set -e
21+
22+
mvn clean test-compile
2123
mvn dependency:build-classpath -DincludeScope=test -Dmdep.outputFile=classpath.txt
2224
]]></build-command>
2325
<auxclasspath-command>echo -n "$(pwd)/target/classes:$(pwd)/target/test-classes:"; cat classpath.txt</auxclasspath-command>

0 commit comments

Comments
 (0)