OC-2584: Detect if the server supports the Share API. This Check is in OwnCloudServer...
[pub/Android/ownCloud.git] / oc_framework / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
5 <modelVersion>4.0.0</modelVersion>
6 <groupId>com.owncloud.android</groupId>
7 <artifactId>oc_framework</artifactId>
8 <version>${owncloud.version}</version>
9 <packaging>jar</packaging>
10 <name>oc_framework for Owncloud Android</name>
11
12 <properties>
13 <owncloud.version>1.5.1-SNAPSHOT</owncloud.version>
14 <java-version>1.6</java-version>
15 <!-- Given by maven-android-sdk-deployer -->
16 <google.android-version>4.4_r1</google.android-version>
17 <!-- Usually the latest Android API -->
18 <google.android-api>19</google.android-api>
19 </properties>
20
21 <description>oc_framwork for Owncloud for Android</description>
22
23 <dependencies>
24
25 <dependency>
26 <groupId>android</groupId>
27 <artifactId>android</artifactId>
28 <version>${google.android-version}</version>
29 <scope>provided</scope>
30 </dependency>
31
32 <dependency>
33 <groupId>org.apache.jackrabbit</groupId>
34 <artifactId>jackrabbit-webdav</artifactId>
35 <version>2.7.2</version>
36 </dependency>
37
38 </dependencies>
39
40 <build>
41 <finalName>${project.artifactId}</finalName>
42
43 <sourceDirectory>src</sourceDirectory>
44
45 <plugins>
46
47 <plugin>
48 <groupId>org.apache.maven.plugins</groupId>
49 <artifactId>maven-compiler-plugin</artifactId>
50 <version>3.0</version>
51 <configuration>
52 <source>${java-version}</source>
53 <target>${java-version}</target>
54 </configuration>
55 </plugin>
56
57 <plugin>
58 <groupId>com.jayway.maven.plugins.android.generation2</groupId>
59 <artifactId>android-maven-plugin</artifactId>
60 <version>3.8.0</version>
61 <configuration>
62 <sdk>
63 <path>${env.ANDROID_HOME}</path>
64 <platform>${google.android-api}</platform>
65 </sdk>
66 </configuration>
67 <extensions>true</extensions>
68 </plugin>
69
70 </plugins>
71
72 </build>
73
74 </project>
75