Maven Repository - POM file for Spring spring-xml 1.5.9 1.5.9

Summary

Spring XML.

Various XML support classes for Spring Web Services.

Declaration

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

<dependency>
   <groupId>org.springframework.ws</groupId>
   <artifactId>spring-xml</artifactId>
   <version>1.5.9</version>
</dependency>

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

Plugin

The following plugins are used in the spring-xml-1.5.9.jar

  1. maven-bundle-plugin




Packages

The following packages are defined in the spring-xml-1.5.9.jar

org.springframework.xml
org.springframework.xml.dom
org.springframework.xml.namespace
org.springframework.xml.sax
org.springframework.xml.stream
org.springframework.xml.transform
org.springframework.xml.validation
org.springframework.xml.xpath
org.springframework.xml.xsd
org.springframework.xml.xsd.commons




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">
    <parent>
        <artifactId>spring-ws-parent</artifactId>
        <groupId>org.springframework.ws</groupId>
        <version>1.5.9</version>
        <relativePath>../parent/pom.xml</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>spring-xml</artifactId>
    <packaging>bundle</packaging>
    <name>Spring XML</name>
    <description>Various XML support classes for Spring Web Services</description>
    <profiles>
        <profile>
            <id>jdk14-jdk15</id>
            <activation>
                <jdk>!1.6</jdk>
            </activation>
            <dependencies>
                <dependency>
                    <groupId>javax.xml.stream</groupId>
                    <artifactId>stax-api</artifactId>
                </dependency>
            </dependencies>
        </profile>
    </profiles>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <configuration>
                    <instructions>
                        <Bundle-SymbolicName>org.springframework.bundle.ws.xml</Bundle-SymbolicName>
                        <Export-Package>org.springframework.xml*;version="${pom.version}"</Export-Package>
                        <Import-Package>
                            org.apache.commons.logging*,
                            javax.xml.namespace*,
                            javax.xml.parsers*,
                            javax.xml.transform.stax;resolution:=optional,
                            javax.xml.transform*,
                            org.xml.sax*,
                            org.w3c.dom*,
                            org.springframework.xml*;version="[${pom.version},${pom.version}]",
                            org.springframework*;version="[2.0,4.0)",
                            *;resolution:=optional
                        </Import-Package>
                        <Implementation-Title>${pom.name}</Implementation-Title>
                        <Spring-WS-Version>${pom.version}</Spring-WS-Version>
                        <Bundle-Vendor>SpringSource</Bundle-Vendor>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <dependencies>
        <!-- Spring dependencies -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
        </dependency>
        <!-- XML handling dependencies -->
        <dependency>
            <groupId>jaxen</groupId>
            <artifactId>jaxen</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.codehaus.woodstox</groupId>
            <artifactId>wstx-asl</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.ws.commons.schema</groupId>
            <artifactId>XmlSchema</artifactId>
            <optional>true</optional>
        </dependency>
        <!-- Test dependencies -->
        <dependency>
            <groupId>easymock</groupId>
            <artifactId>easymock</artifactId>
            <version>1.2_Java1.3</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>