summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-07-31 12:08:51 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-07-31 12:08:51 +0200
commit8911414efcaac0b2d81a6e03d8d2069e47cdb499 (patch)
tree1f054bf4877183c92e689c180780a2d280c3eab1 /pom.xml
parent0860d1c007144d37956781ad8cbd82ff3fde37f5 (diff)
downloadAntennaPod-8911414efcaac0b2d81a6e03d8d2069e47cdb499.zip
Added pom.xml, excluded files generated by maven
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml92
1 files changed, 92 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 000000000..8456f708a
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,92 @@
+<?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/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>de.danoeh</groupId>
+ <artifactId>antennapod</artifactId>
+ <packaging>apk</packaging>
+ <version>0.9.1</version>
+ <name>AntennaPod</name>
+
+
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-lang3</artifactId>
+ <version>3.1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.shredzone.flattr4j</groupId>
+ <artifactId>flattr4j-core</artifactId>
+ <version>2.4</version>
+ <scope>compile</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpcore</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpclient</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.json</groupId>
+ <artifactId>json</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>com.google.android</groupId>
+ <artifactId>android</artifactId>
+ <scope>provided</scope>
+ <version>4.0.1.2</version>
+ </dependency>
+ <dependency>
+ <groupId>com.actionbarsherlock</groupId>
+ <artifactId>library</artifactId>
+ <version>4.1.0</version>
+ <type>apklib</type>
+ </dependency>
+ <dependency>
+ <groupId>com.viewpagerindicator</groupId>
+ <artifactId>library</artifactId>
+ <version>2.3.1</version>
+ <type>apklib</type>
+ </dependency>
+ <dependency>
+ <groupId>android.tools.support</groupId>
+ <artifactId>annotations</artifactId>
+ <version>1.0</version>
+ </dependency>
+
+ </dependencies>
+
+ <build>
+ <sourceDirectory>src</sourceDirectory>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.3.2</version>
+ <configuration>
+ <source>1.6</source>
+ <target>1.6</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>com.jayway.maven.plugins.android.generation2</groupId>
+ <artifactId>android-maven-plugin</artifactId>
+ <version>3.3.0</version>
+ <configuration>
+ <sdk>
+ <path>${env.ANDROID_HOME}</path>
+ <platform>14</platform>
+ </sdk>
+ </configuration>
+ <extensions>true</extensions>
+ </plugin>
+ </plugins>
+ </build>
+
+
+</project>