mirror of
https://github.com/geometer/FBReaderJ.git
synced 2025-10-04 02:09:35 +02:00
89 lines
3.4 KiB
XML
89 lines
3.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Copyright 2012 Andreas Schildbach
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
<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 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.mobeta.android.dslv</groupId>
|
|
<artifactId>drag-sort-listview</artifactId>
|
|
<packaging>apklib</packaging>
|
|
<version>0.6.1-SNAPSHOT</version>
|
|
|
|
<parent>
|
|
<groupId>com.mobeta.android.dslv</groupId>
|
|
<artifactId>parent</artifactId>
|
|
<version>0.6.1-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.google.android</groupId>
|
|
<artifactId>android</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.android</groupId>
|
|
<artifactId>support-v4</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<sourceDirectory>src</sourceDirectory>
|
|
<testSourceDirectory>test</testSourceDirectory>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
|
|
<artifactId>android-maven-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-eclipse-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.7</version>
|
|
<configuration>
|
|
<docletArtifact>
|
|
<groupId>com.google.doclava</groupId>
|
|
<artifactId>doclava</artifactId>
|
|
<version>1.0.5</version>
|
|
</docletArtifact>
|
|
<doclet>com.google.doclava.Doclava</doclet>
|
|
<!--
|
|
| bootclasspath required by Sun's JVM
|
|
-->
|
|
<bootclasspath>${sun.boot.class.path}</bootclasspath>
|
|
<additionalparam>
|
|
-quiet
|
|
-federate Android http://d.android.com/reference
|
|
-federationxml Android http://doclava.googlecode.com/svn/static/api/android-10.xml
|
|
-hdf project.name "${project.name}"
|
|
-d ${project.build.directory}/apidocs
|
|
</additionalparam>
|
|
<useStandardDocletOptions>false</useStandardDocletOptions>
|
|
<!--
|
|
| Apple's JVM sometimes requires more memory
|
|
-->
|
|
<additionalJOption>-J-Xmx1024m</additionalJOption>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|