Bjorn,

Bjorn Townsend <[EMAIL PROTECTED]> wrote on 03/08/2008 10:07:40 PM:

> I think there's still some confusion. :) I'm not trying to generate
> code from a WSDL or build an AAR, I just have a already-generated
> client that I want to set up as a Maven build rather than an Ant
> build, and I'm wondering what jars/plugins are required for that.

I'm not sure that I understand your request any better, but here goes:

The following is an excerpt from the pom I use to generate a client from
source that I manually generate from WSDL (Axis2 1.3):


    <!--  Project dependencies -- I think this is the part you're
interested in.============================= -->

    <dependencies>

        <dependency>
            <groupId>org.apache.axis2</groupId>
            <artifactId>axis2</artifactId>
            <version>1.3</version>
        </dependency>

        <dependency>
            <groupId>org.apache.ws.commons.axiom</groupId>
            <artifactId>axiom-impl</artifactId>
            <version>1.2.5</version>
        </dependency>

      <dependency>
            <groupId>org.apache.ws.commons.axiom</groupId>
            <artifactId>axiom-api</artifactId>
            <version>1.2.5</version>
        </dependency>
        <dependency>
            <groupId>org.apache.ws.commons.axiom</groupId>
            <artifactId>axiom-dom</artifactId>
            <version>1.2.5</version>
        </dependency>

        <dependency>
            <groupId>org.apache.ws.commons.schema</groupId>
            <artifactId>XmlSchema</artifactId>
            <version>1.3.2</version>
        </dependency>

        <dependency>
            <groupId>stax</groupId>
            <artifactId>stax-api</artifactId>
            <version>1.0.1</version>
        </dependency>

        <dependency>
            <groupId>org.codehaus.woodstox</groupId>
            <artifactId>wstx-asl</artifactId>
            <version>3.2.1</version>
        </dependency>

        <dependency>
            <groupId>wsdl4j</groupId>
            <artifactId>wsdl4j</artifactId>
            <version>1.6.1</version>
        </dependency>

        <dependency>
            <groupId>commons-httpclient</groupId>
            <artifactId>commons-httpclient</artifactId>
            <version>3.0.1</version>
        </dependency>

    </dependencies>

 <!-- ... the usual remainder of the pom ... -->

</project>


_____________________________________________________
Steven Gruverman
IntelliCare, Inc.
www.intellicare.com



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to