tachyon-underfs-local
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.tachyonproject</groupId> <artifactId>tachyon-underfs-local</artifactId> <version>0.8.2</version> </dependency>
<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>org.tachyonproject</groupId> <artifactId>tachyon-underfs</artifactId> <version>0.8.2</version> </parent> <artifactId>tachyon-underfs-local</artifactId> <name>Tachyon Under File System - Local FS</name> <description>Under File System implementation that uses local file system</description> <properties> <license.header.path>${project.parent.parent.basedir}/build/license/</license.header.path> <checkstyle.path>${project.parent.parent.basedir}/build/checkstyle/</checkstyle.path> <findbugs.path>${project.parent.parent.basedir}/build/findbugs/</findbugs.path> </properties> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.tachyonproject</groupId> <artifactId>tachyon-common</artifactId> <version>${project.version}</version> </dependency> <!-- Test Dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-reflect</artifactId> <scope>test</scope> </dependency> </dependencies> </project>