alluxio-underfs-local
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.alluxio</groupId> <artifactId>alluxio-underfs-local</artifactId> <version>313</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- 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-underfs</artifactId> <version>313</version> </parent> <artifactId>alluxio-underfs-local</artifactId> <name>Alluxio Under File System - Local FS</name> <description>Local FS Under File System implementation</description> <properties> <!-- The following paths need to be defined here as well as in the parent pom so that mvn can --> <!-- run properly from sub-project directories --> <build.path>${project.parent.parent.parent.basedir}/build</build.path> </properties> <dependencies> <dependency> <groupId>org.alluxio</groupId> <artifactId>alluxio-core-common</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.alluxio</groupId> <artifactId>alluxio-core-common</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <inherited>false</inherited> <executions> <execution> <id>copy-lib-jars-selectively</id> <goals> <goal>exec</goal> </goals> <phase>install</phase> <configuration> <executable>${build.path}/lib/copy_jars.sh</executable> <arguments> <argument>${project.artifactId}</argument> <argument>${basedir}/target/${project.artifactId}-${project.version}-jar-with-dependencies.jar</argument> <argument>${build.path}/../lib/${project.artifactId}-${project.version}.jar</argument> </arguments> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <configuration> <filesets> <fileset> <directory>${build.path}/../lib</directory> <includes> <include>**/${project.artifactId}-*.jar</include> </includes> </fileset> </filesets> </configuration> </plugin> </plugins> </build> </project>