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.mimepull</groupId> <artifactId>mimepull</artifactId> <version>1.7</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:CDDL 1.1
URL: https://glassfish.java.net/public/CDDL+GPL_1_1.htmlName:GPL2 w/ CPE
URL: https://glassfish.java.net/public/CDDL+GPL_1_1.html.
The mimepull-1.7 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.7. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Web Service | saaj-impl 1.3.19 Open source Reference Implementation of JSR-67: SOAP with Attachments API for Java (SAAJ MR :1.3) | 8 |
Web Service | saaj-impl 1.3.16 Open source Reference Implementation of JSR-67: SOAP with Attachments API for Java (SAAJ MR :1.3) | 9 |
The following plugins are used in the mimepull-1.7.jar
The following packages are defined in the mimepull-1.7.jar
org.jvnet.mimepull
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> <groupId>net.java</groupId> <artifactId>jvnet-parent</artifactId> <version>1</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.jvnet.mimepull</groupId> <artifactId>mimepull</artifactId> <version>1.7</version> <packaging>jar</packaging> <name>MIME streaming extension</name> <description> Provides a streaming API to access attachments parts in a MIME message. </description> <url>http://mimepull.java.net</url> <organization> <name>Oracle Corporation</name> <url>http://www.oracle.com/</url> </organization> <licenses> <license> <name>CDDL 1.1</name> <url>https://glassfish.java.net/public/CDDL+GPL_1_1.html</url> <distribution>repo</distribution> </license> <license> <name>GPL2 w/ CPE</name> <url>https://glassfish.java.net/public/CDDL+GPL_1_1.html</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:svn:https://svn.java.net/svn/mimepull~svn/tags/mimepull-1.7</connection> <developerConnection>scm:svn:https://svn.java.net/svn/mimepull~svn/tags/mimepull-1.7</developerConnection> <url>http://java.net/projects/mimepull/sources/svn/show/tags/mimepull-1.7</url> </scm> <issueManagement> <system>jira</system> <url>http://java.net/jira/browse/mimepull</url> </issueManagement> <mailingLists> <mailingList> <name>mimepull Users List</name> <archive>http://java.net/projects/mimepull/lists/users/archive</archive> <post>users@mimepull.java.net</post> </mailingList> <mailingList> <name>mimepull Developers List</name> <archive>http://java.net/projects/mimepull/lists/dev/archive</archive> <post>dev@mimepull.java.net</post> </mailingList> </mailingLists> <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> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> <useReleaseProfile>false</useReleaseProfile> <arguments>${release.arguments}</arguments> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> </project>