blob: 2291787019e483d204fdae77fa1d610c6e543e1c [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<project>
<description>Register servers into qa-funcional tests</description>
<target name="test-qa-functional" depends="init,test-init,test-build,register-servers" if="exists.test.qa-functional.src.dir">
<test test.type="qa-functional"/>
</target>
<target name="register-servers"
depends="check-v3ee6-root-property,check-aas-root-property,check-catalinahome-property,register-glassfish,register-tomcat"/>
<target name="check-v3ee6-root-property" if="org.glassfish.v3ee6.installRoot">
<property name="glassfish.home" value="${org.glassfish.v3ee6.installRoot}"/>
</target>
<target name="check-aas-root-property" if="test-qa-functional-sys-prop.com.sun.aas.installRoot">
<property name="glassfish.home" value="${test-qa-functional-sys-prop.com.sun.aas.installRoot}"/>
</target>
<target name="check-catalinahome-property" if="org.netbeans.modules.tomcat.autoregister.catalinaHome">
<property name="tomcat.home" value="${org.netbeans.modules.tomcat.autoregister.catalinaHome}"/>
</target>
<target name="register-glassfish" if="glassfish.home">
<echo message="GlassFish Root Directory: ${glassfish.home}"/>
<java classname="org.netbeans.modules.glassfish.common.registration.AutomaticRegistration"
fork="true">
<arg value="${netbeans.dest.dir}/enterprise"/>
<arg value="${glassfish.home}"/>
<classpath>
<fileset dir="${netbeans.dest.dir}">
<include name="platform/core/core.jar"/>
<include name="platform/lib/boot.jar"/>
<include name="platform/lib/org-openide-modules.jar"/>
<include name="platform/core/org-openide-filesystems.jar"/>
<include name="platform/lib/org-openide-util.jar"/>
<include name="platform/lib/org-openide-util-lookup.jar"/>
<include name="enterprise/modules/org-netbeans-modules-j2eeapis.jar"/>
<include name="enterprise/modules/org-netbeans-modules-j2eeserver.jar"/>
<include name="ide/modules/ext/xerces-2.8.0.jar"/>
<include name="ide/modules/org-netbeans-modules-glassfish-common.jar"/>
</fileset>
</classpath>
</java>
</target>
<target name="register-tomcat" if="tomcat.home">
<echo message="Tomcat Root Directory: ${tomcat.home}"/>
<java classname="org.netbeans.modules.tomcat5.registration.AutomaticRegistration"
fork="true">
<arg value="--add"/>
<arg value="${netbeans.dest.dir}/enterprise"/>
<arg value="${tomcat.home}"/>
<classpath>
<fileset dir="${netbeans.dest.dir}">
<include name="platform/core/core.jar"/>
<include name="platform/lib/boot.jar"/>
<include name="platform/lib/org-openide-modules.jar"/>
<include name="platform/core/org-openide-filesystems.jar"/>
<include name="platform/lib/org-openide-util.jar"/>
<include name="platform/lib/org-openide-util-lookup.jar"/>
<include name="enterprise/modules/org-netbeans-modules-j2eeapis.jar"/>
<include name="enterprise/modules/org-netbeans-modules-j2eeserver.jar"/>
<include name="ide/modules/ext/xerces-2.8.0.jar"/>
<include name="enterprise/modules/org-netbeans-modules-tomcat5.jar"/>
</fileset>
</classpath>
</java>
</target>
</project>