Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="UTF-8"?>
- <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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>some.awesome.package</groupId>
- <artifactId>AwesomeApp</artifactId>
- <version>1.0-SNAPSHOT</version>
- <packaging>apk</packaging>
- <name>AwesomeApp</name>
- <repositories>
- <repository>
- <id>google-api-services</id>
- <url>http://google-api-client-libraries.appspot.com/mavenrepo</url>
- </repository>
- </repositories>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <!-- Plugins -->
- <android-maven-plugin.version>3.4.1</android-maven-plugin.version>
- <maven-compiler-plugin.version>2.3.2</maven-compiler-plugin.version>
- <api.platform>16</api.platform>
- <!-- Dependencies -->
- <actionBarSherlock.version>4.2.0</actionBarSherlock.version>
- <android.version>4.1.1.4</android.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.google.android</groupId>
- <artifactId>android</artifactId>
- <version>${android.version}</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.actionbarsherlock</groupId>
- <artifactId>actionbarsherlock</artifactId>
- <version>${actionBarSherlock.version}</version>
- <type>apklib</type>
- </dependency>
- <dependency>
- <groupId>com.actionbarsherlock</groupId>
- <artifactId>library</artifactId>
- <version>${actionBarSherlock.version}</version>
- <type>jar</type>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.google.api-client</groupId>
- <artifactId>google-api-client</artifactId>
- <version>1.12.0-beta</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>xpp3</artifactId>
- <groupId>xpp3</groupId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- </exclusion>
- <exclusion>
- <artifactId>junit</artifactId>
- <groupId>junit</groupId>
- </exclusion>
- <exclusion>
- <artifactId>android</artifactId>
- <groupId>com.google.android</groupId>
- </exclusion>
- <exclusion>
- <groupId>com.google.http-client</groupId>
- <artifactId>google-http-client</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.google.http-client</groupId>
- <artifactId>google-http-client-jackson</artifactId>
- <version>1.12.0-beta</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.google.http-client</groupId>
- <artifactId>google-http-client-android</artifactId>
- <version>1.12.0-beta</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>googleapis</groupId>
- <artifactId>calendar</artifactId>
- <version>v3-rev21-1.12.0-beta</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>com.jayway.maven.plugins.android.generation2</groupId>
- <artifactId>android-maven-plugin</artifactId>
- <version>${android-maven-plugin.version}</version>
- <extensions>true</extensions>
- <configuration>
- <sdk>
- <platform>${api.platform}</platform>
- </sdk>
- <runDebug>true</runDebug>
- <undeployBeforeDeploy>true</undeployBeforeDeploy>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>${maven-compiler-plugin.version}</version>
- <configuration>
- <source>1.6</source>
- <target>1.6</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement