You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@xmlbeans.apache.org by Arek Stryjski <de...@krzyzowki.net.pl> on 2004/07/09 15:14:31 UTC

Re: Is it possible to direct generated output from multiple schemas t o a single jar?

Cytowanie "York Jeffrey  (ext1jzy)" <ex...@ups.com>:

> 	I have a need to generate multiple types from multiple schemas but I
> would like to place them all in a single jar to attempt to simplify
> management.  Is it possible to direct generated output types from multiple
> schemas to a single jar?
> 
> Jeff York
> x678-1178
> 
> 

like this?

    <target name="xmlb" depends="init">
        <xmlbean destfile="${gener.dir}/oneJar.jar"
                srcgendir="${gener.dir}/src"
                classpathref="classpath">
            <fileset dir="${schemas.dir}" includes="**/*.xsd"/>
        </xmlbean>
    </target>

Arek

- ---------------------------------------------------------------------
To unsubscribe, e-mail:   xmlbeans-user-unsubscribe@xml.apache.org
For additional commands, e-mail: xmlbeans-user-help@xml.apache.org
Apache XMLBeans Project -- URL: http://xml.apache.org/xmlbeans/