MIME streaming extension.
Provides a streaming API to access attachments parts in a MIME message..
Here is the list of declaration for mimepull. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.jvnet</groupId> <artifactId>mimepull</artifactId> <version>1.4</version> </dependency>
If you think this Maven repository POM file listing for mimepull is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
URL: http://www.opensource.org/licenses/cddl1.phpName:GPLv2 with classpath exception
URL: http://www.gnu.org/software/classpath/license.html.
The mimepull-1.4 has 1 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 |
---|---|---|
JUnit | junit 3.8.1 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. | 1966 |
The following table lists the most popular artifacts which are depending on mimepull-1.4. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Web Service | cxf-bundle 2.5.2 Apache CXF Bundle Jar | 5 |
Web Service | saaj-impl 1.3.10 Open source Reference Implementation of JSR-76: SOAP with Attachments API for Java (SAAJ MR :1.3) | 7 |
Web Service | saaj-impl 1.3.12 Open source Reference Implementation of JSR-67: SOAP with Attachments API for Java (SAAJ MR :1.3) | 8 |
The following plugins are used in the mimepull-1.4.jar
The following packages are defined in the mimepull-1.4.jar
org.jvnet.mimepull
Here is the content of the POM file.
<project xsi:schemaLocation='http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd' xmlns='http://maven.apache.org/POM/4.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'> <modelVersion>4.0.0</modelVersion> <groupId>org.jvnet</groupId> <artifactId>mimepull</artifactId> <version>1.4</version> <packaging>jar</packaging> <name>MIME streaming extension</name> <description> Provides a streaming API to access attachments parts in a MIME message. </description> <organization> <name>Sun Microsystems, Inc</name> <url>http://www.sun.com/</url> </organization> <scm> <connection>scm:svn:https://mimepull.dev.java.net/svn/mimepull/tags/mimepull-1.4</connection> <developerConnection>scm:svn:https://mimepull.dev.java.net/svn/mimepull/tags/mimepull-1.4</developerConnection> <url>https://mimepull.dev.java.net/source/browse/mimepull/tags/mimepull-1.4</url> </scm> <issueManagement> <system>issueZilla</system> <url>https://mimepull.dev.java.net/servlets/ProjectIssues</url> </issueManagement> <mailingLists> <mailingList> <name>mimepull Users List</name> <post>users@mimepull.dev.java.net</post> <archive>https://mimepull.dev.java.net/servlets/SummarizeList?listName=users</archive> </mailingList> <mailingList> <name>mimepull Dev List</name> <post>dev@mimepull.dev.java.net</post> <archive>https://mimepull.dev.java.net/servlets/SummarizeList?listName=dev</archive> </mailingList> </mailingLists> <licenses> <license> <name> COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 </name> <url>http://www.opensource.org/licenses/cddl1.php</url> <distribution>repo</distribution> </license> <license> <name> GPLv2 with classpath exception </name> <url>http://www.gnu.org/software/classpath/license.html</url> <distribution>repo</distribution> </license> </licenses> <repositories> </repositories> <pluginRepositories> </pluginRepositories> <distributionManagement> <repository> <uniqueVersion>false</uniqueVersion> <id>java.net-maven2-repository</id> <url>java-net:/maven2-repository/trunk/repository/</url> </repository> <site> <id>mimepull-www</id> <url>java-net:/mimepull/trunk/www/</url> </site> </distributionManagement> <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-idea-plugin</artifactId> <configuration> <jdkName>JDK1.5</jdkName> <downloadSources>true</downloadSources> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptorRefs> <descriptorRef>src</descriptorRef> <descriptorRef>bin</descriptorRef> </descriptorRefs> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.0.0</version> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> </plugin> </plugins> <extensions> <extension> <groupId>org.jvnet.wagon-svn</groupId> <artifactId>wagon-svn</artifactId> <version>1.8</version> </extension> </extensions> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> </project>