Maven Repository - POM file for Spring jaxws-spring 1.8 1.8

Summary

Spring support extension.

Configure JAX-WS with Spring.

Declaration

Here is the list of declaration for jaxws-spring. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.jvnet.jax-ws-commons.spring</groupId>
   <artifactId>jaxws-spring</artifactId>
   <version>1.8</version>
</dependency>

If you think this Maven repository POM file listing for jaxws-spring is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Depends on

The jaxws-spring-1.8 has 18 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
XMLjaxws-rt 2.1.3
Open source Reference Implementation of JSR-224: Java API for XML Web Services
25
Springspring 2.0
Spring Framework
11
Springspring-core 2.0
Spring Framework: Core
5
JUnitjunit 3.8
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
111
Web Servicejsr181-api 1.0-MR1
Web Services Metadata for Java
102
JEE Containerjsr250-api 1.0
JSR-250 Reference Implementation by Glassfish
242
JEEactivation 1.1
JavaBeans Activation Framework (JAF) is a standard extension to the Java platform that lets you take advantage of standard services to: determine the type of an arbitrary piece of data; encapsulate access to it; discover the operations available on it; and instantiate the appropriate bean to perfor...
369




Plugin

The following plugins are used in the jaxws-spring-1.8.jar

  1. maven-antrun-plugin
  2. maven-xbean-plugin

Packages

The following packages are defined in the jaxws-spring-1.8.jar

com.sun.xml.ws.transport.http.servlet
com.sun.xml.ws.transport.local
org.jvnet.jax_ws_commons.spring

POM File Source

Here is the content of the POM file.

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.jvnet.jax-ws-commons</groupId>
    <artifactId>spring</artifactId>
    <version>1.8</version>
    <relativePath>../pom.xml</relativePath>
  </parent>
  
  <groupId>org.jvnet.jax-ws-commons.spring</groupId>
  <artifactId>jaxws-spring</artifactId>
  <packaging>jar</packaging>
  
  <name>Spring support extension</name>
  <description>Configure JAX-WS with Spring</description>
  
  <distributionManagement>
    <site>
      <url>file:../../www/spring/</url>
    </site>
  </distributionManagement>
  
  <build>
    <plugins>
      <plugin>
        <groupId>org.jvnet.jax-ws-commons.spring</groupId>
        <artifactId>maven-xbean-plugin</artifactId>
        <version>2.8-patched</version><!-- to work around https://issues.apache.org/jira/browse/XBEAN-71 and http://jira.codehaus.org/browse/QDOX-110 -->
        <executions>
          <!-- for servlet -->
          <execution>
            <id>servlet</id>
            <configuration>
              <namespace>http://jax-ws.dev.java.net/spring/servlet</namespace>
              <schema>target/xbean/spring-jax-ws-servlet.xsd</schema>
              <srcDir>src/main/java/com/sun/xml/ws/transport/http/servlet</srcDir>
            </configuration>
            <goals>
              <goal>mapping</goal>
            </goals>
          </execution>
          <!-- for core -->
          <execution>
            <id>core</id>
            <configuration>
              <namespace>http://jax-ws.dev.java.net/spring/core</namespace>
              <schema>target/xbean/spring-jax-ws-core.xsd</schema>
              <srcDir>src/main/java/org/jvnet/jax_ws_commons/spring</srcDir>
            </configuration>
            <goals>
              <goal>mapping</goal>
            </goals>
          </execution>
          <!-- for local transport -->
          <execution>
            <id>local-transport</id>
            <configuration>
              <namespace>http://jax-ws.dev.java.net/spring/local-transport</namespace>
              <schema>target/xbean/spring-jax-ws-local-transport.xsd</schema>
              <srcDir>src/main/java/com/sun/xml/ws/transport/local</srcDir>
            </configuration>
            <goals>
              <goal>mapping</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <!--
        to work around XBEAN-60, remove those files so that our versions
        in the source tree takes precedence.
      -->
      <plugin>
        <artifactId>maven-antrun-plugin</artifactId>
        <executions>
          <execution>
            <phase>process-resources</phase>
            <configuration>
              <tasks>
                <delete file="target/xbean/META-INF/spring.handlers" />
                <delete file="target/xbean/META-INF/spring.schemas" />
                
                <!-- copy the HTML files to site -->
                <mkdir dir="target/site/references" />
                <copy todir="target/site/references">
                  <fileset dir="target/xbean" includes="*.html" />
                </copy>
              </tasks>
            </configuration>
            <goals>
              <goal>run</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

  <dependencies>
    <dependency>
      <groupId>com.sun.xml.ws</groupId>
      <artifactId>jaxws-rt</artifactId>
      <version>2.1.3</version>
    </dependency>
    <dependency>
      <groupId>com.sun.xml.ws</groupId>
      <artifactId>jaxws-local-transport</artifactId>
      <version>2.1.3</version>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>servlet-api</artifactId>
      <version>2.5</version><!-- doesn't really matter -->
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring</artifactId>
      <version>2.0</version>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-core</artifactId>
      <version>2.0</version><!-- doesn't really matter -->
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-context</artifactId>
      <version>2.0</version>
    </dependency>
    <dependency>
      <groupId>org.apache.xbean</groupId>
      <artifactId>xbean-spring</artifactId>
      <version>2.7</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8</version>
      <scope>test</scope>
    </dependency>
    <!-- shouldn't be needed once JAX-WS RT POM properly declares the dependency -->
    <dependency>
      <groupId>javax.jws</groupId>
      <artifactId>jsr181-api</artifactId>
      <version>1.0-MR1</version>
    </dependency>
    <dependency>
      <groupId>com.sun.xml.bind</groupId>
      <artifactId>jaxb-impl</artifactId>
      <version>2.1.2</version>
    </dependency>
    <dependency>
      <groupId>javax.xml.soap</groupId>
      <artifactId>saaj-api</artifactId>
      <version>1.3</version>
    </dependency>
    <dependency>
      <groupId>com.sun.xml.messaging.saaj</groupId>
      <artifactId>saaj-impl</artifactId>
      <version>1.3</version>
    </dependency>
    <dependency>
      <groupId>com.sun.xml.stream.buffer</groupId>
      <artifactId>streambuffer</artifactId>
      <version>0.4</version>
    </dependency>
    <dependency>
      <groupId>com.sun.xml.stream</groupId>
      <artifactId>sjsxp</artifactId>
      <version>1.0</version>
    </dependency>
    <dependency>
      <groupId>com.sun.org.apache.xml.internal</groupId>
      <artifactId>resolver</artifactId>
      <version>20050927</version>
    </dependency>
    <dependency>
      <groupId>org.jvnet.staxex</groupId>
      <artifactId>stax-ex</artifactId>
      <version>1.0</version>
    </dependency>
    <dependency>
      <groupId>javax.annotation</groupId>
      <artifactId>jsr250-api</artifactId>
      <version>1.0</version>
    </dependency>
    <!-- SAAJ 1.3 asks for activation 1.0.2, which we don't have, so use 1.1 -->
    <dependency>
      <groupId>javax.activation</groupId>
      <artifactId>activation</artifactId>
      <version>1.1</version>
    </dependency>
  </dependencies>
  
  <!-- sorcerer needs Mustang, but Mustang won't work with JAXB/WS 2.1
  <reporting>
    <plugins>
      <plugin>
        <groupId>org.jvnet.sorcerer</groupId>
        <artifactId>maven-sorcerer-plugin</artifactId>
      </plugin>
    </plugins>
  </reporting>-->
</project>