use of org.apache.maven.plugins.war.stub.ZipArtifactStub in project maven-plugins by apache.
the class WarZipTest method buildZipArtifact.
private Artifact buildZipArtifact() throws Exception {
ArtifactHandler artifactHandler = (ArtifactHandler) lookup(ArtifactHandler.ROLE, "jar");
File zipFile = new File(getTestDirectory(), "foobar.zip");
return new ZipArtifactStub("src/test/resources/unit/warziptest", artifactHandler, zipFile);
}
Aggregations