Skip to content

Commit 1b971e8

Browse files
Add html5lib-tests as a submodule
1 parent f9674dc commit 1b971e8

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "test-src/test/resources/html5lib-tests"]
2+
path = test-src/test/resources/html5lib-tests
3+
url = [email protected]:html5lib/html5lib-tests.git

pom.xml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@
8080
<groupId>org.apache.maven.plugins</groupId>
8181
<artifactId>maven-compiler-plugin</artifactId>
8282
<configuration>
83-
<source>1.5</source>
84-
<target>1.5</target>
83+
<source>1.8</source>
84+
<target>1.8</target>
8585
</configuration>
8686
</plugin>
8787
<plugin>
@@ -132,7 +132,11 @@
132132
<groupId>org.apache.maven.plugins</groupId>
133133
<artifactId>maven-surefire-plugin</artifactId>
134134
<configuration>
135-
<skip>true</skip>
135+
<test>Html5libTest</test>
136+
<testFailureIgnore>true</testFailureIgnore> <!-- FIXME: Remove this testFailureIgnore after we have all tests passing -->
137+
<additionalClasspathElements>
138+
<additionalClasspathElement>${project.build.testSourceDirectory}/test/resources</additionalClasspathElement>
139+
</additionalClasspathElements>
136140
</configuration>
137141
</plugin>
138142
<plugin>
Submodule html5lib-tests added at 6ddcf58

0 commit comments

Comments
 (0)