Mavenize Yaaic. Adding pom.xml file.

This commit is contained in:
Sebastian Kaspari 2012-07-28 11:55:32 +02:00
parent 419c2bb3cb
commit 640acec6eb
2 changed files with 95 additions and 0 deletions

3
.gitignore vendored
View File

@ -11,3 +11,6 @@ ant.properties
build.xml
proguard.cfg
# Maven
target/

92
application/pom.xml Normal file
View File

@ -0,0 +1,92 @@
<?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>org.yaaic</groupId>
<artifactId>yaaic</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>apk</packaging>
<name>yaaic</name>
<description>
Yaaic is as the full name (Yet another Android IRC
client) already says an Internet Relay Chat (IRC) client for
Android devices.
</description>
<url>http://www.yaaic.org</url>
<inceptionYear>2009</inceptionYear>
<scm>
<url>https://github.com/pocmo/Yaaic</url>
<connection>scm:git:git://github.com/pocmo/Yaaic.git
</connection>
<developerConnection>scm:git:git@github.com:pocmo/Yaaic.git
</developerConnection>
</scm>
<developers>
<developer>
<name>Sebastian Kaspari</name>
<email>sebastian@yaaic.org</email>
<id>pocmo</id>
<url>http://www.androidzeitgeist.com</url>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/pocmo/Yaaic/issues</url>
</issueManagement>
<dependencies>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<version>4.0.1.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.actionbarsherlock</groupId>
<artifactId>library</artifactId>
<version>4.1.0</version>
<type>apklib</type>
</dependency>
<dependency>
<groupId>com.viewpagerindicator</groupId>
<artifactId>library</artifactId>
<version>2.3.1</version>
<type>apklib</type>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<finalName>${project.artifactId}</finalName>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<version>3.3.0</version>
<artifactId>android-maven-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<sdk>
<platform>14</platform>
</sdk>
</configuration>
</plugin>
</plugins>
</build>
</project>