com.teamtter.mavennatives.nativedependencies.IArtifactHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nativedependencies-maven-plugin Show documentation
Show all versions of nativedependencies-maven-plugin Show documentation
This plugin allows the automatic unpacking of natives in jars depending on a classifier with a certain pattern.
It is a fork from http://code.google.com/p/mavennatives/ . Thanks to the original authors [email protected] and [email protected] !
package com.teamtter.mavennatives.nativedependencies;
import java.io.File;
import org.apache.maven.artifact.Artifact;
public interface IArtifactHandler {
public void moveOrUnpackTo(File unpackingDir, Artifact artifact) throws ArtifactUnpackingException;
}