mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-11 20:15:03 -05:00
56 lines
1.6 KiB
XML
56 lines
1.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.github.chrisbanes.pulltorefresh</groupId>
|
|
<artifactId>sample</artifactId>
|
|
<packaging>apk</packaging>
|
|
<name>Android-PullToRefresh Sample</name>
|
|
|
|
<parent>
|
|
<groupId>com.github.chrisbanes.pulltorefresh</groupId>
|
|
<artifactId>parent</artifactId>
|
|
<version>1.4.2</version>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.google.android</groupId>
|
|
<artifactId>android</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>library</artifactId>
|
|
<type>apklib</type>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>extra-listfragment</artifactId>
|
|
<type>apklib</type>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<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>
|
|
<configuration>
|
|
<excludes>
|
|
<exclude>com.google.android:android</exclude>
|
|
<exclude>commons-logging:commons-logging</exclude>
|
|
<exclude>xerces:xmlParserAPIs</exclude>
|
|
<exclude>xpp3:xpp3</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|