Skip to content

Commit

Permalink
Create pom.xml
Browse files Browse the repository at this point in the history
Created pom.xml
  • Loading branch information
toadeh committed Jul 21, 2014
1 parent 300e416 commit 67131cf
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions library/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<?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>se.emilsjolander</groupId>
<artifactId>StickylListHeaders</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>apk</packaging>
<name>StickyListHeaders</name>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<platform.version>4.1.1.4
</platform.version>
<android.plugin.version>3.6.0</android.plugin.version>
</properties>

<dependencies>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<version>${platform.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<finalName>${project.artifactId}</finalName>
<sourceDirectory>${project.basedir}/src/se/emilsjolander/stickylistheaders</sourceDirectory>
<resources>
<resource>
<directory>${project.basedir}/res</directory>
</resource>
</resources>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<version>${android.plugin.version}</version>
<extensions>true</extensions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>

<configuration>
<sdk>
<platform>16</platform>

</sdk>
</configuration>
</plugin>
</plugins>
</build>

</project>

0 comments on commit 67131cf

Please sign in to comment.