Open source Reference Implementation of JSR-76: SOAP with Attachments API for Java (SAAJ MR :1.3).
Here is the list of declaration for saaj-impl. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.sun.xml.messaging.saaj</groupId> <artifactId>saaj-impl</artifactId> <version>1.3.10</version> </dependency>
If you think this Maven repository POM file listing for saaj-impl is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Dual license consisting of the CDDL v1.1 and GPL v2
URL: http://glassfish.java.net/public/CDDL+GPL_1_1.html.
The saaj-impl-1.3.10 has 2 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
MIME | mimepull 1.4 Provides a streaming API to access attachments parts in a MIME message. | 33 |
The following plugins are used in the saaj-impl-1.3.10.jar
The following packages are defined in the saaj-impl-1.3.10.jar
com.sun.xml.messaging.saaj com.sun.xml.messaging.saaj.client.p2p com.sun.xml.messaging.saaj.packaging.mime com.sun.xml.messaging.saaj.packaging.mime.internet com.sun.xml.messaging.saaj.packaging.mime.util com.sun.xml.messaging.saaj.soap com.sun.xml.messaging.saaj.soap.dynamic com.sun.xml.messaging.saaj.soap.impl com.sun.xml.messaging.saaj.soap.name com.sun.xml.messaging.saaj.soap.ver1_1 com.sun.xml.messaging.saaj.soap.ver1_2 com.sun.xml.messaging.saaj.util com.sun.xml.messaging.saaj.util.transform
Here is the content of the POM file.
<!-- DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. Copyright (c) 2011 Oracle and/or its affiliates. All rights reserved. The contents of this file are subject to the terms of either the GNU General Public License Version 2 only ("GPL") or the Common Development and Distribution License("CDDL") (collectively, the "License"). You may not use this file except in compliance with the License. You can obtain a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html or packager/legal/LICENSE.txt. See the License for the specific language governing permissions and limitations under the License. When distributing the software, include this License Header Notice in each file and include the License file at packager/legal/LICENSE.txt. GPL Classpath Exception: Oracle designates this particular file as subject to the "Classpath" exception as provided by Oracle in the GPL Version 2 section of the License file that accompanied this code. Modifications: If applicable, add the following below the License Header, with the fields enclosed by brackets [] replaced by your own identifying information: "Portions Copyright [year] [name of copyright owner]" Contributor(s): If you wish your version of this file to be governed by only the CDDL or only the GPL Version 2, indicate your decision by adding "[Contributor] elects to include this software in this distribution under the [CDDL or GPL Version 2] license." If you don't indicate a single choice of license, a recipient has the option to distribute your version of this file under either the CDDL, the GPL Version 2 or to extend the choice of license to its licensees as provided above. However, if you add GPL Version 2 code and therefore, elected the GPL Version 2 license, then the option applies only if the new code is made subject to such option by the copyright holder. --> <project> <modelVersion>4.0.0</modelVersion> <groupId>com.sun.xml.messaging.saaj</groupId> <artifactId>saaj-impl</artifactId> <version>1.3.10</version> <description> Open source Reference Implementation of JSR-76: SOAP with Attachments API for Java (SAAJ MR :1.3) </description> <distributionManagement> <repository> <uniqueVersion>false</uniqueVersion> <id>java.net-maven2-repository</id> <url>svn:https://svn.java.net/svn/maven2-repository~svn/trunk/repository</url> </repository> </distributionManagement> <build> <sourceDirectory>src/java</sourceDirectory> <resources> <resource> <directory>src/java</directory> <includes> <include>**/*.properties</include> </includes> </resource> <resource> <directory>src/conf/META-INF</directory> <targetPath>META-INF</targetPath> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <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-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> <extensions> <extension> <groupId>org.jvnet.wagon-svn</groupId> <artifactId>wagon-svn</artifactId> <version>1.12</version> </extension> </extensions> </build> <repositories> <repository> <id>maven2-repository.dev.java.net</id> <name>Java.net Repository for Maven</name> <url>http://download.java.net/maven/2/</url> </repository> </repositories> <organization> <name>Oracle</name> <url>http://www.oracle.com/</url> </organization> <scm> <connection>scm:svn co https://svn.java.net/svn/saaj~svn/trunk</connection> </scm> <issueManagement> <system>issueZilla</system> <url>http://java.net/jira/browse/SAAJ</url> </issueManagement> <mailingLists> <mailingList> <name>SAAJ RI Users List</name> <post>users@saaj.java.net</post> </mailingList> <mailingList> <name>SAAJ Implementation Dev List</name> <post>dev@saaj.java.net</post> </mailingList> </mailingLists> <licenses> <license> <name> Dual license consisting of the CDDL v1.1 and GPL v2 </name> <url>http://glassfish.java.net/public/CDDL+GPL_1_1.html</url> <distribution>repo</distribution> </license> </licenses> <dependencies> <dependency> <groupId>javax.xml.soap</groupId> <artifactId>saaj-api</artifactId> <version>1.3.3</version> </dependency> <dependency> <groupId>org.jvnet</groupId> <artifactId>mimepull</artifactId> <version>1.4</version> </dependency> </dependencies> </project>