From a1dfd0235612a815efa7cdbb8f39b7e364e23553 Mon Sep 17 00:00:00 2001 From: Mark Donszelmann Date: Fri, 18 Dec 2009 14:31:18 +0100 Subject: Fixed NAR-121 --- .../maven/plugin/nar/NarArtifactHandler.java | 64 ---------------------- 1 file changed, 64 deletions(-) delete mode 100644 src/main/java/org/apache/maven/plugin/nar/NarArtifactHandler.java diff --git a/src/main/java/org/apache/maven/plugin/nar/NarArtifactHandler.java b/src/main/java/org/apache/maven/plugin/nar/NarArtifactHandler.java deleted file mode 100644 index 7d8304d..0000000 --- a/src/main/java/org/apache/maven/plugin/nar/NarArtifactHandler.java +++ /dev/null @@ -1,64 +0,0 @@ -package org.apache.maven.plugin.nar; - -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -import org.apache.maven.artifact.handler.ArtifactHandler; - -/** - * @author Mark Donszelmann - */ -public class NarArtifactHandler - implements ArtifactHandler -{ - public final String getPackaging() - { - return "nar"; - } - - public final String getClassifier() - { - return null; - } - - public final String getDirectory() - { - return getExtension() + "s"; - } - - public final String getExtension() - { - return "jar"; - } - - public final String getLanguage() - { - return "java"; - } - - public final boolean isAddedToClasspath() - { - return true; - } - - public final boolean isIncludesDependencies() - { - return false; - } -} -- cgit v1.2.3