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<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-activation</artifactId>
750N/A <packaging>jar</packaging>
750N/A <name>JavaBeans Activation Framework fork for Android</name>
750N/A
750N/A <!--
750N/A This is a fork of the JavaBeans Activation Framework (JAF) that
750N/A is sufficient for use by JavaMail when running on Android.
750N/A Android is not Java Compatible, and is missing the java.awt.datatransfer
750N/A classes. This fork of JAF breaks the dependency on the
750N/A java.awt.datatransfer classes and thus isn't compatible with
750N/A the JAF specification. It should not be used by anything other
750N/A than this Android-specific version of JavaMail.
750N/A -->
750N/A
750N/A <properties>
750N/A <activation.spec.version>1.2</activation.spec.version>
750N/A <activation.extensionName>
750N/A javax.activation
750N/A </activation.extensionName>
750N/A <activation.specificationTitle>
750N/A JavaBeans(TM) Activation Framework Specification
750N/A </activation.specificationTitle>
750N/A <activation.implementationTitle>
750N/A javax.activation
750N/A </activation.implementationTitle>
750N/A <activation.packages.export>
750N/A javax.activation.*; version=${activation.spec.version},
750N/A com.sun.activation.*; version=${activation.osgiversion}
750N/A </activation.packages.export>
750N/A <findbugs.skip>
750N/A false
750N/A </findbugs.skip>
750N/A <findbugs.exclude>
750N/A ${project.basedir}/exclude.xml
750N/A </findbugs.exclude>
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 <!--
750N/A Configure compiler plugin to print lint warnings.
750N/A -->
750N/A <plugin>
750N/A <artifactId>maven-compiler-plugin</artifactId>
750N/A <executions>
750N/A <execution>
750N/A <id>default-compile</id>
750N/A <configuration>
750N/A <source>1.5</source>
750N/A <target>1.5</target>
750N/A <fork>true</fork>
750N/A <!--
750N/A ignore some of the errors that are
750N/A too hard to fix for now
750N/A -->
750N/A <!--
750N/A <compilerArguments>
750N/A <Xlint:all/>
750N/A <Xlint:-rawtypes/>
750N/A <Xlint:-unchecked/>
750N/A <Xlint:-finally/>
750N/A </compilerArguments>
750N/A <showWarnings>true</showWarnings>
750N/A -->
750N/A </configuration>
750N/A </execution>
750N/A <execution>
750N/A <id>default-testCompile</id>
750N/A <configuration>
750N/A <source>1.5</source>
750N/A <target>1.5</target>
750N/A </configuration>
750N/A </execution>
750N/A </executions>
750N/A </plugin>
750N/A
750N/A <!--
750N/A Configure test plugin to find *TestSuite classes.
750N/A -->
750N/A <plugin>
750N/A <groupId>org.apache.maven.plugins</groupId>
750N/A <artifactId>maven-surefire-plugin</artifactId>
750N/A <configuration>
750N/A <includes>
750N/A <include>**/*Test.java</include>
750N/A <include>**/*TestSuite.java</include>
750N/A </includes>
750N/A </configuration>
750N/A </plugin>
750N/A
750N/A <plugin>
750N/A <groupId>org.apache.felix</groupId>
750N/A <artifactId>maven-bundle-plugin</artifactId>
750N/A <configuration>
750N/A <instructions>
750N/A <Bundle-SymbolicName>
750N/A ${activation.bundle.symbolicName}
750N/A </Bundle-SymbolicName>
750N/A <Export-Package>
750N/A ${activation.packages.export}
750N/A </Export-Package>
750N/A <Import-Package>
750N/A ${activation.packages.import}
750N/A </Import-Package>
750N/A <Private-Package>
750N/A ${activation.packages.private}
750N/A </Private-Package>
750N/A <DynamicImport-Package>
750N/A *
750N/A </DynamicImport-Package>
750N/A </instructions>
750N/A </configuration>
750N/A <!--
750N/A Since we don't change the packaging type to bundle, we
750N/A need to configure the plugin to execute the manifest goal
750N/A during the process-classes phase of the build life cycle.
750N/A -->
750N/A <executions>
750N/A <execution>
750N/A <id>osgi-manifest</id>
750N/A <phase>process-classes</phase>
750N/A <goals>
750N/A <goal>manifest</goal>
750N/A </goals>
750N/A </execution>
750N/A </executions>
750N/A </plugin>
750N/A
750N/A <!--
750N/A Since we don't want a qualifier like b05 or SNAPSHOT to
750N/A appear in the OSGi package version attribute, we use
750N/A the following plugin to populate a project property
750N/A with an OSGi version that is equivalent to the maven
750N/A version without the qualifier.
750N/A -->
750N/A <plugin>
750N/A <groupId>org.glassfish.hk2</groupId>
750N/A <artifactId>osgiversion-maven-plugin</artifactId>
750N/A <version>${hk2.plugin.version}</version>
750N/A <configuration>
750N/A <dropVersionComponent>qualifier</dropVersionComponent>
750N/A <versionPropertyName>activation.osgiversion</versionPropertyName>
750N/A </configuration>
750N/A <executions>
750N/A <execution>
750N/A <id>compute-osgi-version</id>
750N/A <goals>
750N/A <goal>compute-osgi-version</goal>
750N/A </goals>
750N/A </execution>
750N/A </executions>
750N/A </plugin>
750N/A </plugins>
750N/A </build>
750N/A
750N/A <dependencies>
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>