Hi,
I’m trying to create a bare-bones service from scratch using Maven but can’t 
seem to get the jax-ws API from the CXF dependencies. Without it I can’t add 
the @WebService dependency.
What is the most appropriate CXF artifact to use to pick this up (transitively 
would be fine)?  Here is what I have at the moment:
    <properties>
        <cxf.version>2.4.1</cxf.version>
    </properties>

    <dependencies>

        <dependency>
            <groupId>org.apache.cxf</groupId>
            <artifactId>cxf-rt-frontend-jaxws</artifactId>
            <version>${cxf.version}</version>
        </dependency>

        <dependency>
            <groupId>org.apache.cxf</groupId>
            <artifactId>cxf-rt-frontend-simple</artifactId>
            <version>${cxf.version}</version>
        </dependency>

        <dependency>
            <groupId>org.apache.cxf</groupId>
            <artifactId>cxf-rt-transports-http</artifactId>
            <version>${cxf.version}</version>
        </dependency>

    </dependencies>

Thanks

Reply via email to