OC-2459: Ask for pincode, when click on an instant upload notification
[pub/Android/ownCloud.git] / 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>owncloud</artifactId>
8 <version>${owncloud.version}</version>
9 <packaging>apk</packaging>
10 <name>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 <actionbarsherlock-version>4.2.0</actionbarsherlock-version>
20 </properties>
21
22 <url>https://github.com/owncloud/android</url>
23 <description>Owncloud for Android</description>
24 <scm>
25 <connection>scm:git:git@github.com:owncloud/android.git</connection>
26 <developerConnection>scm:git:git@github.com:owncloud/android.git</developerConnection>
27 <url>https://github.com/owncloud/android</url>
28 </scm>
29
30 <dependencies>
31
32 <dependency>
33 <groupId>android</groupId>
34 <artifactId>android</artifactId>
35 <version>${google.android-version}</version>
36 <scope>provided</scope>
37 </dependency>
38
39 <dependency>
40 <groupId>com.actionbarsherlock</groupId>
41 <artifactId>actionbarsherlock</artifactId>
42 <version>${actionbarsherlock-version}</version>
43 <scope>provided</scope>
44 </dependency>
45
46 <dependency>
47 <groupId>com.actionbarsherlock</groupId>
48 <artifactId>actionbarsherlock</artifactId>
49 <version>${actionbarsherlock-version}</version>
50 <type>apklib</type>
51 </dependency>
52
53 <dependency>
54 <groupId>org.apache.jackrabbit</groupId>
55 <artifactId>jackrabbit-webdav</artifactId>
56 <version>2.5.2</version>
57 </dependency>
58
59 <!-- MUST BE INSTALLED FIRST: cd oc_framework; mvn install -->
60 <dependency>
61 <groupId>com.owncloud.android</groupId>
62 <artifactId>oc_framework</artifactId>
63 <version>${owncloud.version}</version>
64 </dependency>
65
66 </dependencies>
67
68 <build>
69 <finalName>${project.artifactId}</finalName>
70
71 <sourceDirectory>src</sourceDirectory>
72
73 <plugins>
74
75 <plugin>
76 <groupId>org.apache.maven.plugins</groupId>
77 <artifactId>maven-compiler-plugin</artifactId>
78 <version>3.0</version>
79 <configuration>
80 <source>${java-version}</source>
81 <target>${java-version}</target>
82 </configuration>
83 </plugin>
84
85 <plugin>
86 <groupId>com.jayway.maven.plugins.android.generation2</groupId>
87 <artifactId>android-maven-plugin</artifactId>
88 <version>3.8.0</version>
89 <configuration>
90 <sdk>
91 <path>${env.ANDROID_HOME}</path>
92 <platform>${google.android-api}</platform>
93 </sdk>
94 </configuration>
95 <extensions>true</extensions>
96 </plugin>
97
98 </plugins>
99
100 </build>
101
102 </project>
103