305N/A<?xml version="1.0" encoding="iso-8859-1"?>
305N/A<!--
305N/A
305N/A DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
305N/A
811N/A Copyright (c) 1997-2015 Oracle and/or its affiliates. All rights reserved.
305N/A
305N/A The contents of this file are subject to the terms of either the GNU
305N/A General Public License Version 2 only ("GPL") or the Common Development
305N/A and Distribution License("CDDL") (collectively, the "License"). You
305N/A may not use this file except in compliance with the License. You can
305N/A obtain a copy of the License at
305N/A https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
305N/A or packager/legal/LICENSE.txt. See the License for the specific
305N/A language governing permissions and limitations under the License.
305N/A
305N/A When distributing the software, include this License Header Notice in each
305N/A file and include the License file at packager/legal/LICENSE.txt.
305N/A
305N/A GPL Classpath Exception:
305N/A Oracle designates this particular file as subject to the "Classpath"
305N/A exception as provided by Oracle in the GPL Version 2 section of the License
305N/A file that accompanied this code.
305N/A
305N/A Modifications:
305N/A If applicable, add the following below the License Header, with the fields
305N/A enclosed by brackets [] replaced by your own identifying information:
305N/A "Portions Copyright [year] [name of copyright owner]"
305N/A
305N/A Contributor(s):
305N/A If you wish your version of this file to be governed by only the CDDL or
305N/A only the GPL Version 2, indicate your decision by adding "[Contributor]
305N/A elects to include this software in this distribution under the [CDDL or GPL
305N/A Version 2] license." If you don't indicate a single choice of license, a
305N/A recipient has the option to distribute your version of this file under
305N/A either the CDDL, the GPL Version 2 or to extend the choice of license to
305N/A its licensees as provided above. However, if you add GPL Version 2 code
305N/A and therefore, elected the GPL Version 2 license, then the option applies
305N/A only if the new code is made subject to such option by the copyright
305N/A holder.
305N/A
305N/A-->
305N/A
305N/A<!--
305N/A This project builds the JavaMail API jar file, which contains only
305N/A the javax.mail.* API definitions and is *only* intended to be used
305N/A for programs to compile against. Note that it includes none of the
305N/A implementation-specific classes that the javax.mail.* classes rely on.
305N/A-->
305N/A
305N/A<project xmlns="http://maven.apache.org/POM/4.0.0"
305N/A xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
305N/A xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
305N/A http://maven.apache.org/maven-v4_0_0.xsd">
305N/A <parent>
305N/A <groupId>com.sun.mail</groupId>
305N/A <artifactId>all</artifactId>
813N/A <version>1.5.6-SNAPSHOT</version>
305N/A </parent>
305N/A <modelVersion>4.0.0</modelVersion>
305N/A <groupId>javax.mail</groupId>
305N/A <artifactId>javax.mail-api</artifactId>
305N/A <packaging>jar</packaging>
305N/A <name>JavaMail API jar</name>
305N/A
305N/A <properties>
446N/A <mail.extensionName>
446N/A javax.mail
446N/A </mail.extensionName>
305N/A <mail.packages.export>
305N/A javax.mail.*; version=${mail.spec.version}
305N/A </mail.packages.export>
305N/A <mail.bundle.symbolicName>
305N/A javax.mail-api
305N/A </mail.bundle.symbolicName>
305N/A </properties>
305N/A
305N/A <build>
305N/A <plugins>
305N/A <plugin>
305N/A <artifactId>maven-dependency-plugin</artifactId>
305N/A <executions>
305N/A <execution>
371N/A <!-- download the binaries -->
371N/A <id>get-binaries</id>
793N/A <phase>compile</phase>
371N/A <goals>
371N/A <goal>unpack</goal>
371N/A </goals>
371N/A </execution>
371N/A <execution>
371N/A <!-- download the sources -->
371N/A <id>get-sources</id>
793N/A <phase>compile</phase>
305N/A <goals>
305N/A <goal>unpack</goal>
305N/A </goals>
371N/A <configuration>
371N/A <artifactItems>
371N/A <artifactItem>
371N/A <groupId>com.sun.mail</groupId>
371N/A <artifactId>javax.mail</artifactId>
371N/A <version>${mail.version}</version>
371N/A <classifier>sources</classifier>
371N/A <outputDirectory>
371N/A ${project.build.directory}/sources
371N/A </outputDirectory>
371N/A </artifactItem>
371N/A </artifactItems>
371N/A </configuration>
305N/A </execution>
305N/A </executions>
305N/A <configuration>
305N/A <artifactItems>
305N/A <artifactItem>
305N/A <groupId>com.sun.mail</groupId>
305N/A <artifactId>javax.mail</artifactId>
305N/A <version>${mail.version}</version>
305N/A </artifactItem>
305N/A </artifactItems>
305N/A <outputDirectory>
305N/A ${project.build.outputDirectory}
305N/A </outputDirectory>
305N/A <includes>
305N/A javax/**,
371N/A META-INF/LICENSE.txt
305N/A </includes>
305N/A </configuration>
305N/A </plugin>
305N/A <plugin>
305N/A <artifactId>maven-jar-plugin</artifactId>
305N/A <configuration>
305N/A <finalName>${project.artifactId}</finalName>
305N/A <archive>
305N/A <manifestFile>
305N/A ${project.build.outputDirectory}/META-INF/MANIFEST.MF
305N/A </manifestFile>
305N/A </archive>
305N/A </configuration>
305N/A </plugin>
305N/A </plugins>
305N/A </build>
305N/A</project>