|
| 1 | +<?xml version="1.0"?> |
| 2 | +<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/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <!-- Inherit from ../pom.xml --> |
| 6 | + <parent> |
| 7 | + <groupId>com.firebase</groupId> |
| 8 | + <artifactId>geofire</artifactId> |
| 9 | + <version>2.0.0-SNAPSHOT</version> |
| 10 | + <relativePath>../</relativePath> |
| 11 | + </parent> |
| 12 | + |
| 13 | + <artifactId>geofire-android</artifactId> |
| 14 | + <packaging>aar</packaging> |
| 15 | + |
| 16 | + <name>geofire-android</name> |
| 17 | + <description>GeoFire is an open-source library for Android/Java that allows you to store and query a set of keys based on their geographic location.</description> |
| 18 | + <organization> |
| 19 | + <name>Firebase</name> |
| 20 | + <url>https://www.firebase.com/</url> |
| 21 | + </organization> |
| 22 | + <url>https://github.com/firebase/geofire-java</url> |
| 23 | + <scm> |
| 24 | + <connection>scm:git:git@github.com:firebase/geofire-java.git</connection> |
| 25 | + <developerConnection>scm:git:git@github.com:firebase/geofire-java.git</developerConnection> |
| 26 | + <url>https://github.com/firebase/geofire-java</url> |
| 27 | + </scm> |
| 28 | + <licenses> |
| 29 | + <license> |
| 30 | + <name>MIT</name> |
| 31 | + <url>http://firebase.mit-license.org</url> |
| 32 | + </license> |
| 33 | + </licenses> |
| 34 | + <properties> |
| 35 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 36 | + </properties> |
| 37 | + <build> |
| 38 | + <sourceDirectory>../src/main/java</sourceDirectory> |
| 39 | + <plugins> |
| 40 | + <plugin> |
| 41 | + <groupId>com.simpligility.maven.plugins</groupId> |
| 42 | + <artifactId>android-maven-plugin</artifactId> |
| 43 | + <version>4.3.0</version> <!-- use latest release --> |
| 44 | + <extensions>true</extensions> |
| 45 | + </plugin> |
| 46 | + </plugins> |
| 47 | + </build> |
| 48 | + <repositories> |
| 49 | + <repository> |
| 50 | + <id>google-extras</id> |
| 51 | + <url>file://${env.ANDROID_HOME}/extras/google/m2repository</url> |
| 52 | + </repository> |
| 53 | + <repository> |
| 54 | + <id>android-extras</id> |
| 55 | + <url>file://${env.ANDROID_HOME}/extras/android/m2repository</url> |
| 56 | + </repository> |
| 57 | + </repositories> |
| 58 | + <dependencies> |
| 59 | + <dependency> |
| 60 | + <groupId>com.google.firebase</groupId> |
| 61 | + <artifactId>firebase-database</artifactId> |
| 62 | + <version>[9.0.2,)</version> |
| 63 | + <scope>provided</scope> |
| 64 | + <type>aar</type> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>com.google.android</groupId> |
| 68 | + <artifactId>android</artifactId> |
| 69 | + <version>2.2.1</version> |
| 70 | + <scope>provided</scope> |
| 71 | + </dependency> |
| 72 | + <dependency> |
| 73 | + <groupId>junit</groupId> |
| 74 | + <artifactId>junit</artifactId> |
| 75 | + <version>4.8.1</version> |
| 76 | + <scope>test</scope> |
| 77 | + </dependency> |
| 78 | + </dependencies> |
| 79 | +</project> |
0 commit comments