70 lines
1.6 KiB
XML
70 lines
1.6 KiB
XML
<?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>
|
|
<version>0.0.1</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
|
<additionalLibs>${basedir}/src/misc/lib</additionalLibs>
|
|
</properties>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>congrace.de</id>
|
|
<name>releases</name>
|
|
<url>http://nexus.congrace.de/nexus/content/repositories/releases/</url>
|
|
<layout>default</layout>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.8.2</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.solovyev</groupId>
|
|
<artifactId>common</artifactId>
|
|
<version>0.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.beanshell</groupId>
|
|
<artifactId>bsh</artifactId>
|
|
<version>2.0b4</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>jscl-meditor</groupId>
|
|
<artifactId>jscl-meditor</artifactId>
|
|
<version>2.3.5</version>
|
|
<scope>system</scope>
|
|
<systemPath>${additionalLibs}/jscl.jar</systemPath>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>de.congrace</groupId>
|
|
<artifactId>exp4j</artifactId>
|
|
<version>0.2.8</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.intellij</groupId>
|
|
<artifactId>annotations</artifactId>
|
|
<version>7.0.3</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project> |