git-svn-id: http://talendforge.org/svn/tis_shared/trunk@73182 f6f1c999-d317-4740-80b0-e6d1abc6f99e
26 lines
745 B
XML
26 lines
745 B
XML
<project name="karaf" default="test" basedir=".">
|
|
<!--
|
|
<property name="hudson.selenium.libs" location="F:\hudson_selenium\libs"/>
|
|
-->
|
|
<path id="libs.classpath">
|
|
<fileset dir="${hudson.selenium.libs}" id="libs.path.id">
|
|
<include name="*.jar"/>
|
|
</fileset>
|
|
</path>
|
|
|
|
<!-- - - - - - - - - - - - - - - - - -
|
|
target: test
|
|
- - - - - - - - - - - - - - - - - -->
|
|
<target name="test">
|
|
<java classname="com.talend.tac.base.Karaf">
|
|
<classpath>
|
|
<pathelement path="${karaf.path}"/>
|
|
</classpath>
|
|
<classpath refid="libs.classpath" />
|
|
<arg line="${host} ${action} ${timeout}"/>
|
|
</java>
|
|
</target>
|
|
|
|
</project>
|
|
|