Maven Repository - POM file for MIME mimepull 1.7 1.7

Summary

MIME streaming extension.

Provides a streaming API to access attachments parts in a MIME message..

Declaration

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.

License

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.





Depends on

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.

CategoryArtifactDepended By Count
JUnitjunit 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

Depended by

The following table lists the most popular artifacts which are depending on mimepull-1.7. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Web Servicesaaj-impl 1.3.19
Open source Reference Implementation of JSR-67: SOAP with Attachments API for Java (SAAJ MR :1.3)
8
Web Servicesaaj-impl 1.3.16
Open source Reference Implementation of JSR-67: SOAP with Attachments API for Java (SAAJ MR :1.3)
9

Plugin

The following plugins are used in the mimepull-1.7.jar

  1. maven-assembly-plugin
  2. maven-bundle-plugin
  3. maven-compiler-plugin
  4. maven-idea-plugin
  5. maven-jar-plugin
  6. maven-release-plugin




Packages

The following packages are defined in the mimepull-1.7.jar

org.jvnet.mimepull

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>
    <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>