pom.xml revision 166
132N/A<?xml version="1.0" encoding="iso-8859-1"?>
132N/A<!--
132N/A DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
132N/A
132N/A Copyright 1997-2009 Sun Microsystems, Inc. All rights reserved.
132N/A
132N/A The contents of this file are subject to the terms of either the GNU
132N/A General Public License Version 2 only ("GPL") or the Common Development
132N/A and Distribution License("CDDL") (collectively, the "License"). You
132N/A may not use this file except in compliance with the License. You can obtain
132N/A a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
132N/A or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
132N/A language governing permissions and limitations under the License.
132N/A
132N/A When distributing the software, include this License Header Notice in each
132N/A file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
132N/A Sun designates this particular file as subject to the "Classpath" exception
132N/A as provided by Sun in the GPL Version 2 section of the License file that
132N/A accompanied this code. If applicable, add the following below the License
132N/A Header, with the fields enclosed by brackets [] replaced by your own
132N/A identifying information: "Portions Copyrighted [year]
132N/A [name of copyright owner]"
132N/A
132N/A Contributor(s):
215N/A
132N/A If you wish your version of this file to be governed by only the CDDL or
132N/A only the GPL Version 2, indicate your decision by adding "[Contributor]
132N/A elects to include this software in this distribution under the [CDDL or GPL
132N/A Version 2] license." If you don't indicate a single choice of license, a
132N/A recipient has the option to distribute your version of this file under
132N/A either the CDDL, the GPL Version 2 or to extend the choice of license to
132N/A its licensees as provided above. However, if you add GPL Version 2 code
132N/A and therefore, elected the GPL Version 2 license, then the option applies
132N/A only if the new code is made subject to such option by the copyright
132N/A holder.
132N/A-->
132N/A
132N/A<project xmlns="http://maven.apache.org/POM/4.0.0"
132N/A xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
132N/A xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
132N/A http://maven.apache.org/maven-v4_0_0.xsd">
132N/A <parent>
132N/A <groupId>com.sun.mail</groupId>
132N/A <artifactId>all</artifactId>
132N/A <version>1.4.3-SNAPSHOT</version>
132N/A </parent>
132N/A <modelVersion>4.0.0</modelVersion>
132N/A <groupId>javax.mail</groupId>
132N/A <artifactId>mailapi</artifactId>
132N/A <packaging>jar</packaging>
132N/A <name>JavaMail API jar</name>
132N/A
132N/A <properties>
132N/A <mail.packages.export>
132N/A javax.mail.*; version=${mail.spec.version},
132N/A com.sun.mail.util; version=${mail.version},
132N/A com.sun.mail.handlers; version=${mail.version}
132N/A </mail.packages.export>
132N/A </properties>
132N/A
132N/A <build>
132N/A <plugins>
132N/A <plugin>
132N/A <artifactId>maven-dependency-plugin</artifactId>
132N/A <executions>
132N/A <execution>
132N/A <id>unpack</id>
132N/A <phase>process-sources</phase>
132N/A <goals>
132N/A <goal>unpack</goal>
132N/A </goals>
132N/A </execution>
132N/A </executions>
132N/A <configuration>
132N/A <artifactItems>
132N/A <artifactItem>
132N/A <groupId>javax.mail</groupId>
132N/A <artifactId>mail</artifactId>
132N/A <version>${mail.version}</version>
132N/A </artifactItem>
132N/A </artifactItems>
132N/A <outputDirectory>
132N/A ${project.build.outputDirectory}
132N/A </outputDirectory>
132N/A <includes>
132N/A javax/**,
132N/A com/sun/mail/util/**,
132N/A com/sun/mail/handlers/**,
132N/A META-INF/*
219N/A </includes>
1021N/A <excludes>
220N/A META-INF/javamail.default.*
341N/A </excludes>
341N/A </configuration>
379N/A </plugin>
411N/A <plugin>
487N/A <artifactId>maven-jar-plugin</artifactId>
706N/A <configuration>
706N/A <finalName>${project.artifactId}</finalName>
706N/A <archive>
741N/A <manifestFile>
741N/A ${project.build.outputDirectory}/META-INF/MANIFEST.MF
706N/A </manifestFile>
706N/A </archive>
736N/A </configuration>
487N/A </plugin>
704N/A </plugins>
487N/A </build>
704N/A</project>
704N/A