
tutorial.jaxws-sample.service.build.xml Maven / Gradle / Ivy
The newest version!
<?xml version="1.0"?> <!--- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - JOnAS - Copyright (C) 2009 Bull S.A.S. - Contact: [email protected] - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 - USA - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - $Id: build.xml 16912 2009-03-19 07:55:23Z coqp $ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <project name="JAX-WS pojo sample" basedir="." default="war" xmlns:cxf="antlib:org.apache.cxf.ant.extensions" xmlns:jonas="http://jonas.ow2.org"> <!-- Import common rules --> <import file="../../jonas-common.xml"/> <property name="src.dir" value="src/java"/> <!-- setting for quote.war --> <property name="war.dd.file" value="etc/web.xml"/> <property name="war.name" value="quote"/> <patternset id="war.patternset"> <include name="org/ow2/jonas/tutorial/jaxws/quote/*class"/> </patternset> <property name="sei.classname" value="org.ow2.jonas.tutorial.jaxws.quote.QuoteReporter"/> <property name="webServicename" value="QuoteReporterService"/> <target name="war" depends="init, compile" description="Create the quote.war WebApp"> <war destfile="${war.dir}/${war.name}.war" webxml="etc/web.xml"> <!--The bean's classes and JAX-WS generated classes --> <classes dir="${build.classes.dir}"> <include name="**/*.class"/> </classes> </war> </target> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy