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