-
Notifications
You must be signed in to change notification settings - Fork 0
/
android-pom.xml
48 lines (44 loc) · 1.56 KB
/
android-pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http`://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.couchbase.mobile.test</groupId>
<artifactId>couchbase-mobile-test</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
<licenses>
<license>
<name>Couchbase Community Edition License Agreement</name>
<url>http://www.couchbase.com/agreement/community</url>
<distribution>repo</distribution>
</license>
</licenses>
<name>com.couchbase.lite:couchbase-mobile-test</name>
<description>This is a test of the Couchbase Lite system. It is not an actual alert</description>
<url>http://developer.couchbase.com/mobile/</url>
<developers>
<developer>
<name>mobile</name>
<email>mobile@couchbase.com</email>
<organization>Couchbase</organization>
<organizationUrl>http://www.couchbase.com</organizationUrl>
</developer>
</developers>
<repositories>
<repository>
<id>couchbase-ext</id>
<name>External Couchbase Proget</name>
<url>https://mobile.maven.couchbase.com/maven2/dev/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.couchbase.lite</groupId>
<artifactId>couchbase-lite-android-ee-ktx</artifactId>
<version>3.1.0</version>
<scope>compile</scope>
<type>aar</type>
</dependency>
</dependencies>
</project>