pom.xml revision 5
5N/A<project xmlns="http://maven.apache.org/POM/4.0.0"
5N/A xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5N/A xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
5N/A http://maven.apache.org/maven-v4_0_0.xsd">
5N/A <parent>
5N/A <groupId>javax.mail</groupId>
5N/A <artifactId>all</artifactId>
5N/A <version>${mail.version}</version>
5N/A </parent>
5N/A <modelVersion>4.0.0</modelVersion>
5N/A <groupId>javax.mail</groupId>
5N/A <artifactId>mailapi</artifactId>
5N/A <packaging>jar</packaging>
5N/A <version>${mail.version}</version>
5N/A <name>JavaMail API jar</name>
5N/A <description>JavaMail API jar</description>
5N/A <url>http://java.sun.com/projects/javamail</url>
5N/A
5N/A <build>
5N/A <plugins>
5N/A <plugin>
5N/A <artifactId>maven-dependency-plugin</artifactId>
5N/A <version>2.0-alpha-5-SNAPSHOT</version>
5N/A <executions>
5N/A <execution>
5N/A <id>unpack</id>
5N/A <phase>process-sources</phase>
5N/A <goals>
5N/A <goal>unpack</goal>
5N/A </goals>
5N/A </execution>
5N/A </executions>
5N/A <configuration>
5N/A <artifactItems>
5N/A <artifactItem>
5N/A <groupId>javax.mail</groupId>
5N/A <artifactId>mail</artifactId>
5N/A <version>${mail.version}</version>
5N/A </artifactItem>
5N/A </artifactItems>
5N/A <outputDirectory>
5N/A ${project.build.outputDirectory}
5N/A </outputDirectory>
5N/A <includes>
5N/A javax/**,
5N/A com/sun/mail/util/**,
5N/A com/sun/mail/handlers/**,
5N/A META-INF/*
5N/A </includes>
5N/A <excludes>
5N/A META-INF/javamail.default.*
5N/A </excludes>
5N/A </configuration>
5N/A </plugin>
5N/A <plugin>
5N/A <artifactId>maven-jar-plugin</artifactId>
5N/A <configuration>
5N/A <archive>
5N/A <manifestFile>
5N/A ${project.build.outputDirectory}/META-INF/MANIFEST.MF
5N/A </manifestFile>
5N/A </archive>
5N/A </configuration>
5N/A </plugin>
5N/A </plugins>
5N/A </build>
5N/A
5N/A <pluginRepositories>
5N/A <pluginRepository>
5N/A <id>Maven Snapshots</id>
5N/A <url>http://people.apache.org/repo/m2-snapshot-repository</url>
5N/A <snapshots>
5N/A <enabled>true</enabled>
5N/A </snapshots>
5N/A <releases>
5N/A <enabled>false</enabled>
5N/A </releases>
5N/A </pluginRepository>
5N/A </pluginRepositories>
5N/A
5N/A <repositories>
5N/A <repository>
5N/A <id>Maven Snapshots</id>
5N/A <url>http://people.apache.org/repo/m2-snapshot-repository</url>
5N/A <snapshots>
5N/A <enabled>true</enabled>
5N/A </snapshots>
5N/A <releases>
5N/A <enabled>false</enabled>
5N/A </releases>
5N/A </repository>
5N/A </repositories>
5N/A</project>