Skip to content
Snippets Groups Projects
Commit bbe755e8 authored by cbridgha's avatar cbridgha
Browse files

adding jonas server

parent 7a4d282d
No related branches found
No related tags found
No related merge requests found
...@@ -146,6 +146,7 @@ ...@@ -146,6 +146,7 @@
<available file="${localDownloads}/${jemFile}" property="jem.exists"/> <available file="${localDownloads}/${jemFile}" property="jem.exists"/>
<available file="${localDownloads}/${junitFile}" property="testFrameWork.exists"/> <available file="${localDownloads}/${junitFile}" property="testFrameWork.exists"/>
<available file="${localDownloads}/${tomcat50File}" property="tomcat50.exists"/> <available file="${localDownloads}/${tomcat50File}" property="tomcat50.exists"/>
<available file="${localDownloads}/${jonas432File}" property="jonas432.exists"/>
</target> </target>
<target name="getPreReq" > <target name="getPreReq" >
<available file="${localDownloads}/${eclipseFile}" property="eclipsefile.exists"/> <available file="${localDownloads}/${eclipseFile}" property="eclipsefile.exists"/>
...@@ -154,6 +155,7 @@ ...@@ -154,6 +155,7 @@
<available file="${localDownloads}/${jemFile}" property="jem.exists"/> <available file="${localDownloads}/${jemFile}" property="jem.exists"/>
<available file="${localDownloads}/${junitFile}" property="testFrameWork.exists"/> <available file="${localDownloads}/${junitFile}" property="testFrameWork.exists"/>
<available file="${localDownloads}/${tomcat50File}" property="tomcat50.exists"/> <available file="${localDownloads}/${tomcat50File}" property="tomcat50.exists"/>
<available file="${localDownloads}/${jonas432File}" property="jonas432.exists"/>
<available file="${localDownloads}/${tomcat413File}" property="tomcat413.exists"/> <available file="${localDownloads}/${tomcat413File}" property="tomcat413.exists"/>
<available file="${localDownloads}/${axis11File}" property="axis11.exists"/> <available file="${localDownloads}/${axis11File}" property="axis11.exists"/>
...@@ -170,6 +172,7 @@ ...@@ -170,6 +172,7 @@
<antcall target="getJem" /> <antcall target="getJem" />
<antcall target="getTestFrameWork" /> <antcall target="getTestFrameWork" />
<antcall target="getTomcat50" /> <antcall target="getTomcat50" />
<antcall target="getJOnAS432" />
<antcall target="getTomcat413" /> <antcall target="getTomcat413" />
<antcall target="getAxis11" /> <antcall target="getAxis11" />
...@@ -200,6 +203,9 @@ ...@@ -200,6 +203,9 @@
<target name="getTomcat50" unless="tomcat50.exists" > <target name="getTomcat50" unless="tomcat50.exists" >
<get src="${tomcat50URL}" dest="${localDownloads}/${tomcat50File}" /> <get src="${tomcat50URL}" dest="${localDownloads}/${tomcat50File}" />
</target> </target>
<target name="getJOnAS432" unless="jonas432.exists" >
<get src="${jonas432URL}" dest="${localDownloads}/${jonas432File}" />
</target>
<target name="getTomcat413" unless="tomcat413.exists" > <target name="getTomcat413" unless="tomcat413.exists" >
<get src="${tomcat413URL}" dest="${localDownloads}/${tomcat413File}" /> <get src="${tomcat413URL}" dest="${localDownloads}/${tomcat413File}" />
...@@ -261,6 +267,7 @@ ...@@ -261,6 +267,7 @@
<unzip dest="${testDir}" src="${localDownloads}/${jemFile}" overwrite="true" /> <unzip dest="${testDir}" src="${localDownloads}/${jemFile}" overwrite="true" />
<unzip dest="${testDir}" src="${localDownloads}/${junitFile}" overwrite="true" /> <unzip dest="${testDir}" src="${localDownloads}/${junitFile}" overwrite="true" />
<unzip dest="${testDir}" src="${localDownloads}/${tomcat50File}" overwrite="true" /> <unzip dest="${testDir}" src="${localDownloads}/${tomcat50File}" overwrite="true" />
<untar dest="${testDir}" src="${localDownloads}/${jonas432File}" compression="gzip" overwrite="true" />
</target> </target>
<target name="unzipTestEclipseSDK" unless="isEclipseFileTarGz"> <target name="unzipTestEclipseSDK" unless="isEclipseFileTarGz">
<unzip dest="${testDir}" src="${localDownloads}/${eclipseFile}" overwrite="true" /> <unzip dest="${testDir}" src="${localDownloads}/${eclipseFile}" overwrite="true" />
......
#URL to Eclipse zip to be downloaded #URL to Eclipse zip to be downloaded
eclipseURL=http://download.eclipse.org/eclipse/downloads/drops/I20050209-0800/eclipse-SDK-I20050209-0800-linux-gtk.tar.gz eclipseURL=http://download.eclipse.org/eclipse/downloads/drops/I20050209-0800/eclipse-SDK-I20050209-0800-linux-gtk.tar.gz
#http://download.eclipse.org/downloads/drops/S-3.1M4-200412162000/eclipse-SDK-3.1M4-linux-gtk.zip #http://download.eclipse.org/downloads/drops/S-3.1M4-200412162000/eclipse-SDK-3.1M4-linux-gtk.zip
#3.1M3 URL #3.1M3 URL
#eclipseURL=http://download.eclipse.org/downloads/drops/S-3.1M3-200411050810/eclipse-SDK-3.1M3-linux-gtk.zip #eclipseURL=http://download.eclipse.org/downloads/drops/S-3.1M3-200411050810/eclipse-SDK-3.1M3-linux-gtk.zip
#eclipseURL=http://download.eclipse.org/downloads/drops/S-3.1M3-200411050810/eclipse-SDK-3.1M3-win32.zip #eclipseURL=http://download.eclipse.org/downloads/drops/S-3.1M3-200411050810/eclipse-SDK-3.1M3-win32.zip
#Eclipse file name #Eclipse file name
eclipseFile=eclipse-SDK-I20050209-0800-linux-gtk.tar.gz eclipseFile=eclipse-SDK-I20050209-0800-linux-gtk.tar.gz
isEclipseFileTarGz=true isEclipseFileTarGz=true
#eclipseFile=eclipse-SDK-3.1M3-win32.zip #eclipseFile=eclipse-SDK-3.1M3-win32.zip
# Eclipse build URL # Eclipse build URL
eclipseBuildURL=http://download.eclipse.org/downloads/drops/I20050209-0800 eclipseBuildURL=http://download.eclipse.org/downloads/drops/I20050209-0800
#Eclipse details #Eclipse details
baseos=linux baseos=linux
basews=gtk basews=gtk
basearch=x86 basearch=x86
#baseos=win32 #baseos=win32
#basews=win32 #basews=win32
#basearch=x86 #basearch=x86
#URL to EMF zip to be downloaded #URL to EMF zip to be downloaded
emfURL=http://download.eclipse.org/tools/emf/downloads/drops/2.1.0/I200502100800/emf-sdo-xsd-SDK-I200502100800.zip emfURL=http://download.eclipse.org/tools/emf/downloads/drops/2.1.0/I200502100800/emf-sdo-xsd-SDK-I200502100800.zip
#EMF file name #EMF file name
emfFile=emf-sdo-xsd-SDK-I200502100800.zip emfFile=emf-sdo-xsd-SDK-I200502100800.zip
#EMF build URL #EMF build URL
emfBuildURL=http://download.eclipse.org/tools/emf/downloads/drops/2.1.0/I200502100800 emfBuildURL=http://download.eclipse.org/tools/emf/downloads/drops/2.1.0/I200502100800
#URL to GEF zip to be downloaded #URL to GEF zip to be downloaded
gefURL =http://download.eclipse.org/tools/gef/downloads/drops/I-I20050210-200502100200/GEF-SDK-I20050210.zip gefURL =http://download.eclipse.org/tools/gef/downloads/drops/I-I20050210-200502100200/GEF-SDK-I20050210.zip
gefFile =GEF-SDK-I20050210.zip gefFile =GEF-SDK-I20050210.zip
#URL to JEM zip to be downloaded #URL to JEM zip to be downloaded
#jemURL = http://download.eclipse.org/tools/ve/downloads/drops/R-1.0.2-200412091401/JEM-SDK-1.0.2.zip #jemURL = http://download.eclipse.org/tools/ve/downloads/drops/R-1.0.2-200412091401/JEM-SDK-1.0.2.zip
#jemFile = JEM-SDK-1.0.1.1.zip #jemFile = JEM-SDK-1.0.1.1.zip
#or the runtime (smaller file) #or the runtime (smaller file)
jemURL = http://download.eclipse.org/tools/ve/downloads/drops/R-1.0.2-200412091401/JEM-runtime-1.0.2.zip jemURL = http://download.eclipse.org/tools/ve/downloads/drops/R-1.0.2-200412091401/JEM-runtime-1.0.2.zip
jemFile = JEM-runtime-1.0.2.zip jemFile = JEM-runtime-1.0.2.zip
#Automated Test Tools #Automated Test Tools
junitFile=eclipse-test-framework-I20050209-0800.zip junitFile=eclipse-test-framework-I20050209-0800.zip
junitFileBuildURL=http://download.eclipse.org/eclipse/downloads/drops/I20050209-0800/eclipse-test-framework-I20050209-0800.zip junitFileBuildURL=http://download.eclipse.org/eclipse/downloads/drops/I20050209-0800/eclipse-test-framework-I20050209-0800.zip
#URL to Tomcat zips to be downloaded #URL to Tomcat zips to be downloaded
tomcat50URL=http://gulus.usherbrooke.ca/pub/appl/apache/jakarta/tomcat-5/v5.0.28/bin/jakarta-tomcat-5.0.28.zip tomcat50URL=http://gulus.usherbrooke.ca/pub/appl/apache/jakarta/tomcat-5/v5.0.28/bin/jakarta-tomcat-5.0.28.zip
tomcat50File=jakarta-tomcat-5.0.28.zip tomcat50File=jakarta-tomcat-5.0.28.zip
#URL to Tomcat 4.1.3 zips to be downloaded #URL to Tomcat 4.1.3 zips to be downloaded
tomcat413URL=http://apache.bilkent.edu.tr/dist/jakarta/tomcat-4/v4.1.31/bin/jakarta-tomcat-4.1.31.zip tomcat413URL=http://apache.bilkent.edu.tr/dist/jakarta/tomcat-4/v4.1.31/bin/jakarta-tomcat-4.1.31.zip
tomcat413File=jakarta-tomcat-4.1.31.zip tomcat413File=jakarta-tomcat-4.1.31.zip
#URL to AXIS #URL to Jonas 4.3.2
axis11URL=http://apache.bilkent.edu.tr/dist/ws/axis/1_1/axis-1_1.zip jonas432URL=http://download.forge.objectweb.org/jonas/jonas4.3.2-tomcat5.0.30.tgz
axis11File=axis-1_1.zip jonas432File=jonas4.3.2-tomcat5.0.30.tgz
#URL to APACHE SOAP #URL to AXIS
soap231URL=http://apache.bilkent.edu.tr/dist/ws/soap/version-2.3.1/soap-bin-2.3.1.zip axis11URL=http://apache.bilkent.edu.tr/dist/ws/axis/1_1/axis-1_1.zip
soap231File=soap-bin-2.3.1.zip axis11File=axis-1_1.zip
#WSIL4J #URL to APACHE SOAP
wsil4jURL=http://awwebx04.alphaworks.ibm.com/ettk/demos/wstkdoc/wsil4j/lib/wsil4j.jar soap231URL=http://apache.bilkent.edu.tr/dist/ws/soap/version-2.3.1/soap-bin-2.3.1.zip
wsil4jFile=wsil4j.jar soap231File=soap-bin-2.3.1.zip
#UDDI4J - - CANNOT BE DOWNLOADED AUTOMATICALLY- PLEASE DOWNLOAD AND COPY #WSIL4J
uddi4jURL=ftp://www-126.ibm.com/pub/uddi4j/uddi4j-bin-2_0_2.zip wsil4jURL=http://awwebx04.alphaworks.ibm.com/ettk/demos/wstkdoc/wsil4j/lib/wsil4j.jar
uddi4jFile=uddi4j-bin-2_0_2.zip wsil4jFile=wsil4j.jar
#WSDL4J - - CANNOT BE DOWNLOADED AUTOMATICALLY- PLEASE DOWNLOAD AND COPY #UDDI4J - - CANNOT BE DOWNLOADED AUTOMATICALLY- PLEASE DOWNLOAD AND COPY
wsdl4jURL=ftp://www-126.ibm.com/pub/wsdl4j/WSDL4J/1.4/wsdl4j-bin-1.4.zip uddi4jURL=ftp://www-126.ibm.com/pub/uddi4j/uddi4j-bin-2_0_2.zip
wsdl4jFile=wsdl4j-bin-1.4.zip uddi4jFile=uddi4j-bin-2_0_2.zip
#JAVA MAIL - CANNOT BE DOWNLOADED AUTOMATICALLY- PLEASE DOWNLOAD AND COPY #WSDL4J - - CANNOT BE DOWNLOADED AUTOMATICALLY- PLEASE DOWNLOAD AND COPY
javaMailURL=http://java.sun.com/javamail wsdl4jURL=ftp://www-126.ibm.com/pub/wsdl4j/WSDL4J/1.4/wsdl4j-bin-1.4.zip
javaMailFile=javamail-1_3_2.zip wsdl4jFile=wsdl4j-bin-1.4.zip
#JAF - CANNOT BE DOWNLOADED AUTOMATICALLY - PLEASE DOWNLOAD AND COPY #JAVA MAIL - CANNOT BE DOWNLOADED AUTOMATICALLY- PLEASE DOWNLOAD AND COPY
jafURL=http://java.sun.com/ javaMailURL=http://java.sun.com/javamail
jafFile=jaf-1_0_2-upd.zip javaMailFile=javamail-1_3_2.zip
#JAF - CANNOT BE DOWNLOADED AUTOMATICALLY - PLEASE DOWNLOAD AND COPY
#URL to Web Tools downloads jafURL=http://java.sun.com/
# non-mirrored site: webtoolsDownloadURL=http://download.eclipse.org/webtools/downloads/drops jafFile=jaf-1_0_2-upd.zip
# use mirrored site as follows:
webtoolsDownloadURL=http://www.eclipse.org/downloads/download.php?file=/webtools/downloads/drops
#URL to Web Tools downloads
#URL to Internal Reference Tool # non-mirrored site: webtoolsDownloadURL=http://download.eclipse.org/webtools/downloads/drops
internalRefToolURL=http://dev.eclipse.org/viewcvs/index.cgi/~checkout~/jdt-core-home/tools/internal/internal-200302241157.zip # use mirrored site as follows:
internalRefToolFile=internal-200302241157.zip webtoolsDownloadURL=http://www.eclipse.org/downloads/download.php?file=/webtools/downloads/drops
#URL to Internal Reference Tool
internalRefToolURL=http://dev.eclipse.org/viewcvs/index.cgi/~checkout~/jdt-core-home/tools/internal/internal-200302241157.zip
internalRefToolFile=internal-200302241157.zip
\ No newline at end of file
...@@ -21,6 +21,14 @@ ...@@ -21,6 +21,14 @@
<!-- The directory that will contain the xml and html results from the tests that are run --> <!-- The directory that will contain the xml and html results from the tests that are run -->
<property name="results" value="${basedir}/results" /> <property name="results" value="${basedir}/results" />
<target name="init">
<antcall target="setPropertyJOnAS432Dir"/>
</target>
<target name="setPropertyJOnAS432Dir" unless="jonas432Dir">
<property name="jonas432Dir" value="${testDir}/${jonas432DirName}"/>
</target>
<target name="setup" if="clean" description="Reinstall the test Eclipse installation if specified by user"> <target name="setup" if="clean" description="Reinstall the test Eclipse installation if specified by user">
<delete dir="${install}" /> <delete dir="${install}" />
<mkdir dir="${install}" /> <mkdir dir="${install}" />
...@@ -263,7 +271,7 @@ ...@@ -263,7 +271,7 @@
</antcall> </antcall>
</target> </target>
<target name="all"> <target name="all" depends="init">
<antcall target="wst-server-tests"/> <antcall target="wst-server-tests"/>
<antcall target="wst-monitor-tests"/> <antcall target="wst-monitor-tests"/>
<antcall target="wst-webbrowser-tests"/> <antcall target="wst-webbrowser-tests"/>
...@@ -280,7 +288,7 @@ ...@@ -280,7 +288,7 @@
<antcall target="jst-jsp-tests" /> <antcall target="jst-jsp-tests" />
</target> </target>
<target name="performance"> <target name="performance" depends="init">
<antcall target="all"> <antcall target="all">
<param name="runAsPerfApp" value="true"/> <param name="runAsPerfApp" value="true"/>
</antcall> </antcall>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment