Skip to content

Commit

Permalink
Make the Maven build run the encoding tests too
Browse files Browse the repository at this point in the history
  • Loading branch information
sideshowbarker committed Aug 21, 2020
1 parent 789258a commit 04904c4
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,13 @@
</javac>
<!-- We use fork="true" here because without it, we otherwise get -->
<!-- java.lang.NoClassDefFoundError: jdk/internal/reflect/ConstructorAccessorImpl -->
<java classname="nu.validator.htmlparser.test.EncodingTester" fork="true" failonerror="${failonerror}">
<classpath>
<pathelement location="${project.build.outputDirectory}"/>
<pathelement location="${project.build.testOutputDirectory}"/>
</classpath>
<arg value="${basedir}/html5lib-tests/encoding"/>
</java>
<java classname="nu.validator.htmlparser.test.TokenizerTester" fork="true" failonerror="${failonerror}">
<classpath>
<pathelement path="${test_classpath}"/>
Expand Down

0 comments on commit 04904c4

Please sign in to comment.