android-calculatorpp/pom.xml

116 lines
2.8 KiB
XML
Raw Normal View History

2011-09-12 14:54:14 -04:00
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.solovyev.android</groupId>
<artifactId>calculator</artifactId>
2011-10-27 09:27:05 -04:00
<version>1.1.4</version>
2011-09-12 14:54:14 -04:00
2012-01-15 18:34:25 -05:00
<modules>
<module>../android_common</module>
</modules>
<packaging>pom</packaging>
2011-09-12 14:54:14 -04:00
<properties>
<additionalLibs>${basedir}/src/misc/lib</additionalLibs>
</properties>
2011-09-17 16:08:04 -04:00
<repositories>
<repository>
<id>congrace.de</id>
<name>releases</name>
<url>http://nexus.congrace.de/nexus/content/repositories/releases/</url>
<layout>default</layout>
</repository>
</repositories>
2011-09-12 14:54:14 -04:00
<dependencies>
2011-09-17 16:08:04 -04:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
2011-09-12 14:54:14 -04:00
<dependency>
2011-09-16 06:12:49 -04:00
<groupId>org.solovyev</groupId>
<artifactId>common</artifactId>
2012-01-14 17:29:53 -05:00
<version>0.3</version>
2011-09-12 14:54:14 -04:00
</dependency>
2012-01-15 18:34:25 -05:00
<dependency>
<groupId>org.solovyev.android</groupId>
<artifactId>common</artifactId>
<version>0.1</version>
</dependency>
2011-09-16 06:12:49 -04:00
<dependency>
2011-10-27 09:27:05 -04:00
<groupId>org.solovyev</groupId>
<artifactId>jscl</artifactId>
<version>0.0.1</version>
2011-10-27 10:38:45 -04:00
<exclusions>
2011-10-27 09:27:05 -04:00
<exclusion>
<artifactId>xercesImpl</artifactId>
<groupId>xerces</groupId>
</exclusion>
2011-10-27 10:38:45 -04:00
</exclusions>
<!-- <scope>system</scope>
2011-10-27 10:38:45 -04:00
<systemPath>${additionalLibs}/jscl.jar</systemPath>-->
2011-09-16 06:12:49 -04:00
</dependency>
2011-12-14 07:32:23 -05:00
<dependency>
<groupId>net.sf.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>2.0</version>
<scope>test</scope>
</dependency>
2011-09-17 16:08:04 -04:00
<dependency>
2011-09-29 10:33:03 -04:00
<groupId>org.simpleframework</groupId>
<artifactId>simple-xml</artifactId>
<version>2.6.1</version>
<exclusions>
<exclusion>
<artifactId>stax-api</artifactId>
<groupId>stax</groupId>
</exclusion>
</exclusions>
2011-09-17 16:08:04 -04:00
</dependency>
2011-11-19 12:45:19 -05:00
<dependency>
<groupId>achartengine</groupId>
<artifactId>achartengine</artifactId>
<version>0.7.0</version>
<scope>system</scope>
<systemPath>${additionalLibs}/achartengine-0.7.0.jar</systemPath>
</dependency>
<dependency>
<groupId>admob</groupId>
<artifactId>admob</artifactId>
<version>4.3.1</version>
<scope>system</scope>
<systemPath>${additionalLibs}/GoogleAdMobAdsSdk-4.3.1.jar</systemPath>
</dependency>
<dependency>
2012-01-21 11:54:48 -05:00
<groupId>org.solovyev.android</groupId>
<artifactId>billing</artifactId>
<version>0.1</version>
<scope>system</scope>
2012-01-21 11:54:48 -05:00
<systemPath>${additionalLibs}/android_billing.jar</systemPath>
</dependency>
2011-09-12 14:54:14 -04:00
<dependency>
<groupId>com.intellij</groupId>
<artifactId>annotations</artifactId>
<version>7.0.3</version>
</dependency>
</dependencies>
2011-09-16 06:12:49 -04:00
</project>