Skip to content

Commit

Permalink
pom.xml: Add Maven (2.x/3.x) pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
lvillani committed Apr 5, 2011
1 parent 2681548 commit 8f682f4
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions actionbar/pom.xml
@@ -0,0 +1,54 @@
<?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>
<artifactId>actionbar</artifactId>
<groupId>com.markupartist.android</groupId>
<name>android-actionbar</name>
<packaging>apklib</packaging>
<version>1.0.0-SNAPSHOT</version>


<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>


<dependencies>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<version>2.1.2</version>
<scope>provided</scope>
</dependency>
</dependencies>


<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-android-plugin</artifactId>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<version>2.9.0-beta-2</version>
<configuration>
<sdk>
<platform>7</platform>
</sdk>
</configuration>
<extensions>true</extensions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 8f682f4

Please sign in to comment.