reef-runtime-local
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.microsoft.reef</groupId>
<artifactId>reef-runtime-local</artifactId>
<version>0.9</version>
</dependency><?xml version="1.0"?>
<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>
<parent>
<groupId>com.microsoft.reef</groupId>
<artifactId>reef-project</artifactId>
<version>0.9</version>
</parent>
<artifactId>reef-runtime-local</artifactId>
<name>REEF Runtime Local</name>
<description>A local implementation of REEF that uses local JVMs for execution.</description>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>reef-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<targetPath>META-INF/</targetPath>
<filtering>false</filtering>
<directory>${basedir}/conf</directory>
<includes>
<include>*.xml</include>
<include>*.properties</include>
</includes>
<excludes>
</excludes>
</resource>
</resources>
</build>
</project>