Fixed repeated request for create first account when all the accounts where removed...
[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>1.3.21-SNAPSHOT</version>
9 <packaging>apk</packaging>
10 <name>Owncloud Android</name>
11
12 <properties>
13 <java-version>1.6</java-version>
14 <google.android-version>4.1.1.4</google.android-version>
15 <google.android.support-version>r7</google.android.support-version>
16 <actionbarsherlock-version>4.2.0</actionbarsherlock-version>
17 </properties>
18
19 <url>https://github.com/owncloud/android</url>
20 <description>Owncloud for Android</description>
21 <scm>
22 <connection>scm:git:git@github.com:owncloud/android.git</connection>
23 <developerConnection>scm:git:git@github.com:owncloud/android.git</developerConnection>
24 <url>https://github.com/owncloud/android</url>
25 </scm>
26
27 <dependencies>
28
29 <dependency>
30 <groupId>com.google.android</groupId>
31 <artifactId>android</artifactId>
32 <version>${google.android-version}</version>
33 <scope>provided</scope>
34 </dependency>
35
36 <dependency>
37 <groupId>com.google.android</groupId>
38 <artifactId>support-v4</artifactId>
39 <version>${google.android.support-version}</version>
40 </dependency>
41
42 <dependency>
43 <groupId>com.actionbarsherlock</groupId>
44 <artifactId>actionbarsherlock</artifactId>
45 <version>${actionbarsherlock-version}</version>
46 <scope>provided</scope>
47 </dependency>
48
49 <dependency>
50 <groupId>com.actionbarsherlock</groupId>
51 <artifactId>actionbarsherlock</artifactId>
52 <version>${actionbarsherlock-version}</version>
53 <type>apklib</type>
54 </dependency>
55
56 <dependency>
57 <groupId>org.apache.jackrabbit</groupId>
58 <artifactId>jackrabbit-webdav</artifactId>
59 <version>2.5.2</version>
60 </dependency>
61
62 </dependencies>
63
64 <build>
65 <finalName>${project.artifactId}</finalName>
66
67 <sourceDirectory>src</sourceDirectory>
68
69 <plugins>
70
71 <plugin>
72 <groupId>org.apache.maven.plugins</groupId>
73 <artifactId>maven-compiler-plugin</artifactId>
74 <version>3.0</version>
75 <configuration>
76 <source>${java-version}</source>
77 <target>${java-version}</target>
78 </configuration>
79 </plugin>
80
81 <plugin>
82 <groupId>com.jayway.maven.plugins.android.generation2</groupId>
83 <artifactId>android-maven-plugin</artifactId>
84 <version>3.5.0</version>
85 <configuration>
86 <sdk>
87 <!-- platform or api level (api level 4 = platform 1.6)-->
88 <path>${env.ANDROID_HOME}</path>
89 <platform>17</platform>
90 </sdk>
91 </configuration>
92 <extensions>true</extensions>
93 </plugin>
94
95 </plugins>
96
97 </build>
98
99 </project>
100