<?xml version="1.0" encoding="iso-8859-1"?>
<!--
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
The contents of this file are subject to the terms of either the GNU
General Public License Version 2 only ("GPL") or the Common Development
and Distribution License("CDDL") (collectively, the "License"). You
may not use this file except in compliance with the License. You can
obtain a copy of the License at
or packager/legal/LICENSE.txt. See the License for the specific
language governing permissions and limitations under the License.
When distributing the software, include this License Header Notice in each
file and include the License file at packager/legal/LICENSE.txt.
GPL Classpath Exception:
Oracle designates this particular file as subject to the "Classpath"
exception as provided by Oracle in the GPL Version 2 section of the License
file that accompanied this code.
Modifications:
If applicable, add the following below the License Header, with the fields
enclosed by brackets [] replaced by your own identifying information:
"Portions Copyright [year] [name of copyright owner]"
Contributor(s):
If you wish your version of this file to be governed by only the CDDL or
only the GPL Version 2, indicate your decision by adding "[Contributor]
elects to include this software in this distribution under the [CDDL or GPL
Version 2] license." If you don't indicate a single choice of license, a
recipient has the option to distribute your version of this file under
either the CDDL, the GPL Version 2 or to extend the choice of license to
its licensees as provided above. However, if you add GPL Version 2 code
and therefore, elected the GPL Version 2 license, then the option applies
only if the new code is made subject to such option by the copyright
holder.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
<parent>
<artifactId>android</artifactId>
<version>1.5.6-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>android-activation</artifactId>
<packaging>jar</packaging>
<name>JavaBeans Activation Framework fork for Android</name>
<!--
This is a fork of the JavaBeans Activation Framework (JAF) that
is sufficient for use by JavaMail when running on Android.
Android is not Java Compatible, and is missing the java.awt.datatransfer
classes. This fork of JAF breaks the dependency on the
java.awt.datatransfer classes and thus isn't compatible with
the JAF specification. It should not be used by anything other
than this Android-specific version of JavaMail.
-->
<properties>
JavaBeans(TM) Activation Framework Specification
javax.activation.*; version=${activation.spec.version},
com.sun.activation.*; version=${activation.osgiversion}
false
</properties>
<build>
<resources>
<resource>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<!--
Configure compiler plugin to print lint warnings.
-->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>default-compile</id>
<configuration>
<source>1.5</source>
<target>1.5</target>
<fork>true</fork>
<!--
ignore some of the errors that are
too hard to fix for now
-->
<!--
<compilerArguments>
<Xlint:all/>
<Xlint:-rawtypes/>
<Xlint:-unchecked/>
<Xlint:-finally/>
</compilerArguments>
<showWarnings>true</showWarnings>
-->
</configuration>
</execution>
<execution>
<id>default-testCompile</id>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</execution>
</executions>
</plugin>
<!--
Configure test plugin to find *TestSuite classes.
-->
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
</includes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-SymbolicName>
</Bundle-SymbolicName>
<Export-Package>
</Export-Package>
<Import-Package>
</Import-Package>
<Private-Package>
</Private-Package>
<DynamicImport-Package>
*
</DynamicImport-Package>
</instructions>
</configuration>
<!--
Since we don't change the packaging type to bundle, we
need to configure the plugin to execute the manifest goal
during the process-classes phase of the build life cycle.
-->
<executions>
<execution>
<id>osgi-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</plugin>
<!--
Since we don't want a qualifier like b05 or SNAPSHOT to
appear in the OSGi package version attribute, we use
the following plugin to populate a project property
with an OSGi version that is equivalent to the maven
version without the qualifier.
-->
<plugin>
<artifactId>osgiversion-maven-plugin</artifactId>
<configuration>
<dropVersionComponent>qualifier</dropVersionComponent>
</configuration>
<executions>
<execution>
<id>compute-osgi-version</id>
<goals>
<goal>compute-osgi-version</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
<scope>test</scope>
<optional>true</optional>
</dependency>
</dependencies>
</project>