52N/A<?xml version="1.0" encoding="iso-8859-1"?>
52N/A<!--
292N/A
52N/A DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
52N/A
752N/A Copyright (c) 1997-2015 Oracle and/or its affiliates. All rights reserved.
52N/A
52N/A The contents of this file are subject to the terms of either the GNU
52N/A General Public License Version 2 only ("GPL") or the Common Development
52N/A and Distribution License("CDDL") (collectively, the "License"). You
292N/A may not use this file except in compliance with the License. You can
292N/A obtain a copy of the License at
292N/A https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
292N/A or packager/legal/LICENSE.txt. See the License for the specific
52N/A language governing permissions and limitations under the License.
52N/A
52N/A When distributing the software, include this License Header Notice in each
292N/A file and include the License file at packager/legal/LICENSE.txt.
292N/A
292N/A GPL Classpath Exception:
292N/A Oracle designates this particular file as subject to the "Classpath"
292N/A exception as provided by Oracle in the GPL Version 2 section of the License
292N/A file that accompanied this code.
292N/A
292N/A Modifications:
292N/A If applicable, add the following below the License Header, with the fields
292N/A enclosed by brackets [] replaced by your own identifying information:
292N/A "Portions Copyright [year] [name of copyright owner]"
52N/A
52N/A Contributor(s):
52N/A If you wish your version of this file to be governed by only the CDDL or
52N/A only the GPL Version 2, indicate your decision by adding "[Contributor]
52N/A elects to include this software in this distribution under the [CDDL or GPL
52N/A Version 2] license." If you don't indicate a single choice of license, a
52N/A recipient has the option to distribute your version of this file under
52N/A either the CDDL, the GPL Version 2 or to extend the choice of license to
52N/A its licensees as provided above. However, if you add GPL Version 2 code
52N/A and therefore, elected the GPL Version 2 license, then the option applies
52N/A only if the new code is made subject to such option by the copyright
52N/A holder.
292N/A
52N/A-->
52N/A
302N/A<!--
302N/A This project builds the JavaMail "mailapi.jar" file. This jar file
302N/A contains a fully operational JavaMail implementation but without any
302N/A protocol providers. It can be used with the separate protocol provider
302N/A jar files (e.g., smtp.jar, imap.jar) to provide a full JavaMail runtime
302N/A implementation.
302N/A-->
302N/A
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>
15N/A <groupId>com.sun.mail</groupId>
5N/A <artifactId>all</artifactId>
813N/A <version>1.5.6-SNAPSHOT</version>
5N/A </parent>
5N/A <modelVersion>4.0.0</modelVersion>
302N/A <groupId>com.sun.mail</groupId>
5N/A <artifactId>mailapi</artifactId>
5N/A <packaging>jar</packaging>
302N/A <name>JavaMail API (no providers)</name>
5N/A
166N/A <properties>
166N/A <mail.packages.export>
166N/A javax.mail.*; version=${mail.spec.version},
166N/A com.sun.mail.util; version=${mail.version},
168N/A com.sun.mail.util.logging; version=${mail.version},
752N/A com.sun.mail.auth; version=${mail.version}
166N/A com.sun.mail.handlers; version=${mail.version}
166N/A </mail.packages.export>
302N/A <mail.bundle.symbolicName>
302N/A javax.mail.api
302N/A </mail.bundle.symbolicName>
166N/A </properties>
166N/A
5N/A <build>
371N/A <plugins>
5N/A <plugin>
5N/A <artifactId>maven-dependency-plugin</artifactId>
5N/A <executions>
5N/A <execution>
371N/A <!-- download the binaries -->
371N/A <id>get-binaries</id>
794N/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>
794N/A <phase>compile</phase>
5N/A <goals>
5N/A <goal>unpack</goal>
5N/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>
5N/A </execution>
5N/A </executions>
5N/A <configuration>
5N/A <artifactItems>
5N/A <artifactItem>
302N/A <groupId>com.sun.mail</groupId>
302N/A <artifactId>javax.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/**,
752N/A com/sun/mail/auth/**,
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>
7N/A <finalName>${project.artifactId}</finalName>
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>
371N/A </plugins>
5N/A </build>
5N/A</project>