Maven Repository - POM file for MIME mimepull 1.6 1.6

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</groupId>
   <artifactId>mimepull</artifactId>
   <version>1.6</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:Dual license consisting of the CDDL v1.1 and GPL v2
URL: https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html.





Depends on

The mimepull-1.6 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

Plugin

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

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

Packages

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

org.jvnet.mimepull




POM File Source

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.6</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>Oracle Corporation</name>
    <url>http://www.oracle.com/</url>
  </organization>
  <scm>
    <connection>scm:svn:https://svn.java.net/svn/mimepull~svn/tags/mimepull-1.6</connection>
    <developerConnection>scm:svn:https://svn.java.net/svn/mimepull~svn/tags/mimepull-1.6</developerConnection>
    <url>http://java.net/projects/mimepull/sources/svn/show/tags/mimepull-1.6</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>
  <licenses>
    <license>
        <name>
            Dual license consisting of the CDDL v1.1 and GPL v2
        </name>
        <url>https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html</url>
        <distribution>repo</distribution>
    </license>
  </licenses>
  <repositories>
    
    
  </repositories>

  <pluginRepositories>
    
    <!--pluginRepository>
      <id>felix.repo</id>
      <url-->
  </pluginRepositories>

  <distributionManagement>
    <repository>
      <uniqueVersion>false</uniqueVersion>
      <id>java.net-maven2-repository</id>
      <url>java-net:/maven2-repository~svn/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.12</version>
      </extension>
    </extensions>
  </build>
  
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

</project>