Download spring-oxm-tiger-1.5.10.jar file

Introduction

You can download spring-oxm-tiger-1.5.10.jar in this page.

License

Apache Open Source

Type List

spring-oxm-tiger-1.5.10.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.springframework.ws/spring-oxm-tiger/pom.properties
META-INF/maven/org.springframework.ws/spring-oxm-tiger/pom.xml
org.springframework.oxm.GenericMarshaller.class
org.springframework.oxm.GenericUnmarshaller.class
org.springframework.oxm.jaxb.Jaxb2Marshaller.class
org.springframework.oxm.xstream.AnnotationXStreamMarshaller.class

Pom

spring-oxm-tiger-1.5.10.pom file content.

<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.10</version>
        <relativePath>../parent/pom.xml</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>spring-oxm-tiger</artifactId>
    <packaging>bundle</packaging>
    <name>Spring O/X Mapping - Java 5</name>
    <profiles>
        <profile>
            <id>jdk14-jdk15</id>
            <activation>
                <jdk>!1.6</jdk>
            </activation>
            <dependencies>
                <dependency>
                    <groupId>javax.xml.bind</groupId>
                    <artifactId>jaxb-api</artifactId>
                    <scope>provided</scope>
                    <optional>true</optional>
                    <version>2.1</version>
                    <exclusions>
                        <exclusion>
                            <groupId>javax.xml.stream</groupId>
                            <artifactId>stax-api</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>javax.activation</groupId>
                            <artifactId>activation</artifactId>
                        </exclusion>
                    </exclusions>
                </dependency>
                <dependency>
                    <groupId>com.sun.xml.bind</groupId>
                    <artifactId>jaxb-impl</artifactId>
                    <version>2.1.5</version>
                    <scope>provided</scope>
                </dependency>
                <dependency>
                    <groupId>javax.activation</groupId>
                    <artifactId>activation</artifactId>
                </dependency>
            </dependencies>
        </profile>
    </profiles>
    <build>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-antrun-plugin</artifactId>
                <executions>
                    <execution>
                        <id>generate-jaxb2-sources</id>
                        <phase>generate-test-sources</phase>
                        <configuration>
                            <tasks>
                                <ant antfile="${basedir}/build-maven2.xml" inheritRefs="true" target="generate-test-sources">
                                    <property name="maven.test.skip" value="${maven.test.skip}" />
                                </ant>
                            </tasks>
                            <testSourceRoot>${project.build.directory}/generated-sources/test/java</testSourceRoot>
                        </configuration>
                        <goals>
                            <goal>run</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <configuration>
                    <excludeDependencies>true</excludeDependencies>
                    <instructions>
                        <Bundle-SymbolicName>org.springframework.bundle.ws.oxm-tiger</Bundle-SymbolicName>
                        <Export-Package>org.springframework.oxm*;version="${pom.version}"</Export-Package>
                        <Import-Package>
                            org.apache.commons.logging*,
                            javax.xml.namespace*,
                            javax.xml.stream*,
                            javax.xml.transform*,
                            org.springframework.xml*;version="[${pom.version},${pom.version}]",
                            org.springframework.oxm*;version="[${pom.version},${pom.version}]",
                            org.springframework*;version="[2.0,4.0)",
                            *;resolution:=optional
                        </Import-Package>
                        <Fragment-Host>org.springframework.bundle.ws.oxm</Fragment-Host>
                        <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-WS dependencies -->
        <dependency>
            <groupId>org.springframework.ws</groupId>
            <artifactId>spring-xml</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.ws</groupId>
            <artifactId>spring-oxm</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>javax.xml.bind</groupId>
                    <artifactId>jaxb-api</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>com.sun.xml.bind</groupId>
                    <artifactId>jaxb-impl</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>com.sun.xml.bind</groupId>
                    <artifactId>jaxb-libs</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>com.sun.msv.datatype.xsd</groupId>
                    <artifactId>xsdlib</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <!-- Spring dependencies -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <scope>test</scope>
        </dependency>
        <!-- XML handling dependencies -->
        <dependency>
            <groupId>org.codehaus.woodstox</groupId>
            <artifactId>wstx-asl</artifactId>
            <scope>test</scope>
        </dependency>
        <!-- O/X Mapping dependencies -->
        <!-- JAXB2 -->
        <!-- set to 2.0.3, the same version as shipped in JDK 1.6 -->
        <dependency>
            <groupId>com.sun.xml.bind</groupId>
            <artifactId>jaxb-impl</artifactId>
            <version>2.0.3</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.sun.xml.bind</groupId>
            <artifactId>jaxb-xjc</artifactId>
            <version>2.0.3</version>
            <scope>test</scope>
        </dependency>
        <!-- XStream -->
        <dependency>
            <groupId>com.thoughtworks.xstream</groupId>
            <artifactId>xstream</artifactId>
            <optional>true</optional>
        </dependency>
        <!-- Test dependencies -->
        <dependency>
            <groupId>org.easymock</groupId>
            <artifactId>easymock</artifactId>
            <scope>test</scope>
            <version>2.2</version>
        </dependency>
    </dependencies>
</project>

POM Entry

<dependency>
   <groupId>org.springframework.ws</groupId>
   <artifactId>spring-oxm-tiger</artifactId>
   <version>1.5.10</version>
</dependency>

Download

If you think the following spring-oxm-tiger-1.5.10.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download spring-oxm-tiger-1.5.10.jar file




PreviousNext

Related