Skip to content

Commit 2340819

Browse files
Add xalan-test invocation to integration-tests. Not quite cooked yet.
1 parent 5138cc2 commit 2340819

File tree

1 file changed

+35
-1
lines changed

1 file changed

+35
-1
lines changed

integration-tests/pom.xml

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@
4949
<postBuildHookScript>verify</postBuildHookScript>
5050
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
5151
<goals>
52-
<goal>clean</goal>
5352
<goal>test</goal>
5453
</goals>
5554
<settingsFile>src/it/settings.xml</settingsFile>
@@ -61,6 +60,41 @@
6160
<!--<invokerTest>VersionCheck_*Boot*</invokerTest>-->
6261
</configuration>
6362
</plugin>
63+
64+
65+
<!-- Invoke sibling xalan-test project for conformance tests-->
66+
<plugin>
67+
<artifactId>maven-antrun-plugin</artifactId>
68+
<version>3.1.0</version>
69+
<executions>
70+
<execution>
71+
<id>xalan-test attempt</id>
72+
<phase>test</phase>
73+
<configuration>
74+
<target>
75+
<subant
76+
buildpath="../../xalan-test/build.xml"
77+
antfile="../../xalan-test/build.xml"
78+
inheritall="true"
79+
failonerror="true"
80+
verbose="true"
81+
>
82+
<target name="clean"/>
83+
<target name="jar"/>
84+
<target name="extensions.classes"/>
85+
<target name="smoketest"/>
86+
<target name="apitest"/>
87+
<target name="conf.xsltc"/>
88+
</subant>
89+
</target>
90+
</configuration>
91+
<goals>
92+
<goal>run</goal>
93+
</goals>
94+
</execution>
95+
</executions>
96+
</plugin>
97+
6498
</plugins>
6599
</build>
66100
</project>

0 commit comments

Comments
 (0)