|
Glassfish example source code file (hudson.xml)
The Glassfish hudson.xml source code<!-- DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. Copyright (c) 2010-2011 Oracle and/or its affiliates. All rights reserved. The contents of this file are subject to the terms of either the GNU General Public License Version 2 only ("GPL") or the Common Development and Distribution License("CDDL") (collectively, the "License"). You may not use this file except in compliance with the License. You can obtain a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html or packager/legal/LICENSE.txt. See the License for the specific language governing permissions and limitations under the License. When distributing the software, include this License Header Notice in each file and include the License file at packager/legal/LICENSE.txt. GPL Classpath Exception: Oracle designates this particular file as subject to the "Classpath" exception as provided by Oracle in the GPL Version 2 section of the License file that accompanied this code. Modifications: If applicable, add the following below the License Header, with the fields enclosed by brackets [] replaced by your own identifying information: "Portions Copyright [year] [name of copyright owner]" Contributor(s): If you wish your version of this file to be governed by only the CDDL or only the GPL Version 2, indicate your decision by adding "[Contributor] elects to include this software in this distribution under the [CDDL or GPL Version 2] license." If you don't indicate a single choice of license, a recipient has the option to distribute your version of this file under either the CDDL, the GPL Version 2 or to extend the choice of license to its licensees as provided above. However, if you add GPL Version 2 code and therefore, elected the GPL Version 2 license, then the option applies only if the new code is made subject to such option by the copyright holder. --> <!-- To use this file, the Maven Ant tasks and Ant Contrib must be added to the local Ant installation --> <project name="GlassFish Admin Console Dev Test Hudson Helper" default="test" basedir="." xmlns:artifact="antlib:org.apache.maven.artifact.ant"> <property name="install.dir" value="binaries"/> <property name="server.dir" value="${install.dir}/glassfish3"/> <property file="test.properties"/> <property environment="env"/> <property name="http.proxyHost" value=""/> <property name="http.proxyPort" value=""/> <property name="GUI_ADMIN_PORT" value="4848"/> <property name="DOMAIN" value="domain1"/> <property name="ant.contrib.url" value="http://mirrors.ibiblio.org/pub/mirrors/maven2/ant-contrib/ant-contrib/1.0b3/ant-contrib-1.0b3.jar"/> <property name="maven.ant.tasks.url" value="http://repo2.maven.org/maven2/org/apache/maven/maven-ant-tasks/2.1.1/maven-ant-tasks-2.1.1.jar"/> <property name="glassfish.dist.url" value="http://hudson.glassfish.org/job/gf-trunk-build-continuous/lastSuccessfulBuild/artifact/bundles/glassfish.zip"/> <target name="download"> <get src="${ant.contrib.url}" dest="ant-contrib.jar" skipexisting="true"/> <get src="${maven.ant.tasks.url}" dest="maven-ant-tasks.jar" skipexisting="true"/> <get src="${glassfish.dist.url}" dest="glassfish.zip" usetimestamp="true"/> <delete dir="${install.dir}"/> <mkdir dir="${install.dir}"/> <unzip src="glassfish.zip" dest="${install.dir}"/> </target> <target name="setup"> <taskdef resource="net/sf/antcontrib/antlib.xml" classpath="ant-contrib.jar"/> <typedef resource="org/apache/maven/artifact/ant/antlib.xml" uri="antlib:org.apache.maven.artifact.ant" classpath="maven-ant-tasks.jar"/> <if> <os family="windows"/> <then> <property name="executable" value="${server.dir}/bin/asadmin.bat"/> </then> <else> <property name="executable" value="${server.dir}/bin/asadmin"/> <chmod perm="u+x" file="${executable}"/> </else> </if> </target> <target name="start-server" depends="shutdown-server"> <echo message="***** Starting GlassFish"/> <exec executable="${executable}"> <arg value="start-domain"/> <arg value="${DOMAIN}"/> </exec> </target> <target name="test" depends="download,setup"> <trycatch> <try> <antcall target="start-server"/> <artifact:mvn pom="pom.xml" fork="true" mavenHome="${env.MAVEN_HOME}" failonerror="false" resultproperty="test.result"> <arg value="-Dhttp.proxyHost=${http.proxyHost}"/> <arg value="-Dhttp.proxyPort=${http.proxyPort}"/> <arg value="-Prest-devtest"/> <arg value="test"/> </artifact:mvn> </try> <finally> <antcall target="shutdown-server"/> </finally> </trycatch> <fail message="The test run failed. Please see the console output for details."> <condition> <not> <equals arg1="${test.result}" arg2="0"/> </not> </condition> </fail> </target> <target name="shutdown-server"> <echo message="***** Stopping GlassFish"/> <exec executable="${executable}"> <arg value="stop-domain"/> <arg value="${DOMAIN}"/> </exec> </target> </project> Other Glassfish examples (source code examples)Here is a short list of links related to this Glassfish hudson.xml source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.