Download alluxio-shell-1.0.0.jar file

Introduction

You can download alluxio-shell-1.0.0.jar in this page.

License

Apache License

Type List

alluxio-shell-1.0.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.alluxio/alluxio-shell/pom.properties
META-INF/maven/org.alluxio/alluxio-shell/pom.xml
alluxio.shell.AlluxioShell.class
alluxio.shell.AlluxioShellUtils.class
alluxio.shell.command.AbstractShellCommand.class
alluxio.shell.command.CatCommand.class
alluxio.shell.command.ChgrpCommand.class
alluxio.shell.command.ChmodCommand.class
alluxio.shell.command.ChownCommand.class
alluxio.shell.command.CommandUtils.class
alluxio.shell.command.CopyFromLocalCommand.class
alluxio.shell.command.CopyToLocalCommand.class
alluxio.shell.command.CountCommand.class
alluxio.shell.command.CreateLineageCommand.class
alluxio.shell.command.DeleteLineageCommand.class
alluxio.shell.command.DuCommand.class
alluxio.shell.command.FileInfoCommand.class
alluxio.shell.command.FreeCommand.class
alluxio.shell.command.GetCapacityBytesCommand.class
alluxio.shell.command.GetUsedBytesCommand.class
alluxio.shell.command.ListLineagesCommand.class
alluxio.shell.command.LoadCommand.class
alluxio.shell.command.LoadMetadataCommand.class
alluxio.shell.command.LocationCommand.class
alluxio.shell.command.LsCommand.class
alluxio.shell.command.MkdirCommand.class
alluxio.shell.command.MountCommand.class
alluxio.shell.command.MvCommand.class
alluxio.shell.command.PersistCommand.class
alluxio.shell.command.PinCommand.class
alluxio.shell.command.ReportCommand.class
alluxio.shell.command.RmCommand.class
alluxio.shell.command.SetTtlCommand.class
alluxio.shell.command.ShellCommand.class
alluxio.shell.command.TailCommand.class
alluxio.shell.command.TouchCommand.class
alluxio.shell.command.UnmountCommand.class
alluxio.shell.command.UnpinCommand.class
alluxio.shell.command.UnsetTtlCommand.class
alluxio.shell.command.WithWildCardPathCommand.class
fs.man

Pom

alluxio-shell-1.0.0.pom file content.

<!--
  ~ The Alluxio Open Foundation licenses this work under the Apache License, version 2.0
  ~ (the ?License??). You may not use this work except in compliance with the License, which is
  ~ available at www.apache.org/licenses/LICENSE-2.0
  ~
  ~ This software is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
  ~ either express or implied, as more fully set forth in the License.
  ~
  ~ See the NOTICE file distributed with this work for information regarding copyright ownership.
  -->

<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.alluxio</groupId>
    <artifactId>alluxio-parent</artifactId>
    <version>1.0.0</version>
  </parent>
  <artifactId>alluxio-shell</artifactId>
  <packaging>jar</packaging>
  <name>Alluxio Shell</name>
  <description>A Linux shell-like interface to interact with Alluxio</description>

  <properties>
    <!-- These need to be defined here as well as in the parent pom so that mvn can run
         properly from sub-project directories -->
    <license.header.path>${project.parent.basedir}/build/license/</license.header.path>
    <checkstyle.path>${project.parent.basedir}/build/checkstyle/</checkstyle.path>
    <findbugs.path>${project.parent.basedir}/build/findbugs/</findbugs.path>
    <failIfNoTests>false</failIfNoTests>
  </properties>

  <dependencies>
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
    </dependency>
    <dependency>
      <groupId>commons-cli</groupId>
      <artifactId>commons-cli</artifactId>
      <version>1.3.1</version>
    </dependency>
    <dependency>
      <groupId>org.reflections</groupId>
      <artifactId>reflections</artifactId>
      <version>0.9.10</version>
    </dependency>
    <dependency>
      <groupId>org.alluxio</groupId>
      <artifactId>alluxio-core-client-internal</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>org.alluxio</groupId>
      <artifactId>alluxio-core-common</artifactId>
      <version>${project.version}</version>
    </dependency>
  </dependencies>
</project>

POM Entry

<dependency>
   <groupId>org.alluxio</groupId>
   <artifactId>alluxio-shell</artifactId>
   <version>1.0.0</version>
</dependency>

Download

If you think the following alluxio-shell-1.0.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download alluxio-shell-1.0.0.jar file




PreviousNext

Related