Fixed tabs and added module to parent
Signed-off-by: Arjan Tijms <arjan.tijms@gmail.com>
diff --git a/appserver/tests/tck/expression_language/pom.xml b/appserver/tests/tck/expression_language/pom.xml
index 220ad07..c561643 100644
--- a/appserver/tests/tck/expression_language/pom.xml
+++ b/appserver/tests/tck/expression_language/pom.xml
@@ -61,7 +61,7 @@
<artifactId>glassfish-external-tck-expression-language</artifactId>
<packaging>jar</packaging>
- <name>TCK: expression-language</name>
+ <name>TCK: Expression Language</name>
<properties>
<ant.home>${project.build.directory}/apache-ant-${ant.version}</ant.home>
@@ -158,8 +158,8 @@
<goal>unpack-dependencies</goal>
</goals>
<configuration>
- <overWriteSnapshots>true</overWriteSnapshots>
- <overWriteIfNewer>true</overWriteIfNewer>
+ <overWriteSnapshots>true</overWriteSnapshots>
+ <overWriteIfNewer>true</overWriteIfNewer>
<includeArtifactIds>glassfish</includeArtifactIds>
<outputDirectory>${project.build.directory}</outputDirectory>
</configuration>
@@ -258,25 +258,25 @@
<target xmlns:if="ant:if" xmlns:unless="ant:unless">
<taskdef resource="net/sf/antcontrib/antcontrib.properties" classpathref="maven.plugin.classpath" />
- <sequential unless:set="tck.standalone">
- <echo level="info" message="Start running all tests" />
- <exec executable="${ant.home}/bin/ant" dir="${tck.home}/bin" resultproperty="testResult">
- <arg value="-Dmultiple.tests=${run.test}" if:set="run.test" />
- <arg value="run.all" unless:set="run.test"/>
- <arg value="runclient" if:set="run.test" />
- <arg value="-Dkeywords=all" />
- <env key="LC_ALL" value="C" />
- </exec>
-
- <if>
- <not>
- <equals arg1="${testResult}" arg2="0" />
- </not>
- <then>
- <echo message="Running tests failed." />
- </then>
- </if>
- </sequential>
+ <sequential unless:set="tck.standalone">
+ <echo level="info" message="Start running all tests" />
+ <exec executable="${ant.home}/bin/ant" dir="${tck.home}/bin" resultproperty="testResult">
+ <arg value="-Dmultiple.tests=${run.test}" if:set="run.test" />
+ <arg value="run.all" unless:set="run.test"/>
+ <arg value="runclient" if:set="run.test" />
+ <arg value="-Dkeywords=all" />
+ <env key="LC_ALL" value="C" />
+ </exec>
+
+ <if>
+ <not>
+ <equals arg1="${testResult}" arg2="0" />
+ </not>
+ <then>
+ <echo message="Running tests failed." />
+ </then>
+ </if>
+ </sequential>
</target>
</configuration>
</execution>
diff --git a/appserver/tests/tck/pom.xml b/appserver/tests/tck/pom.xml
index 11de7ec..eee6605 100644
--- a/appserver/tests/tck/pom.xml
+++ b/appserver/tests/tck/pom.xml
@@ -35,6 +35,7 @@
<modules>
<module>embedded_ejb_smoke</module>
<module>tck-download</module>
+ <module>expression_language</module>
<module>rest</module>
<module>faces</module>
<module>authentication</module>