Created
October 3, 2011 16:26
-
-
Save mosabua/1259514 to your computer and use it in GitHub Desktop.
Roboguice 1.2-SNAPSHOT Example Project POM
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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>com.twitli.test</groupId> | |
<artifactId>robofragmenttest</artifactId> | |
<version>1.0-SNAPSHOT</version> | |
<packaging>apk</packaging> | |
<dependencies> | |
<dependency> | |
<groupId>com.google.inject</groupId> | |
<artifactId>guice</artifactId> | |
<classifier>no_aop</classifier> | |
<version>3.0</version> | |
</dependency> | |
<dependency> | |
<groupId>org.roboguice</groupId> | |
<artifactId>roboguice</artifactId> | |
<version>1.2-SNAPSHOT</version> | |
</dependency> | |
<dependency> | |
<groupId>android</groupId> | |
<artifactId>android</artifactId> | |
<version>3.0_r2</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>android.support</groupId> | |
<artifactId>compatibility-V4</artifactId> | |
<version>r3</version> | |
</dependency> | |
</dependencies> | |
<build> | |
<pluginManagement> | |
<plugins> | |
<plugin> | |
<groupId>com.jayway.maven.plugins.android.generation2</groupId> | |
<artifactId>android-maven-plugin</artifactId> | |
<version>3.0.0-alpha-11</version> | |
</plugin> | |
</plugins> | |
</pluginManagement> | |
<finalName>${project.artifactId}</finalName> | |
<sourceDirectory>src</sourceDirectory> | |
<testSourceDirectory>test</testSourceDirectory> | |
<plugins> | |
<plugin> | |
<groupId>com.jayway.maven.plugins.android.generation2</groupId> | |
<artifactId>android-maven-plugin</artifactId> | |
<configuration> | |
<sdk> | |
<platform>11</platform> | |
</sdk> | |
</configuration> | |
<extensions>true</extensions> | |
</plugin> | |
<plugin> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>2.3.2</version> | |
<configuration> | |
<source>1.6</source> | |
<target>1.6</target> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment