blob: 145e26e86bb115c563694dd8990d028e9461533e [file] [log] [blame]
Stuart McCulloch888d6da2009-02-16 08:25:03 +00001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19package org.apache.felix.bundleplugin;
20
21
22import java.util.Collection;
23import java.util.HashSet;
24
Carsten Ziegeler82d87402015-03-04 13:26:21 +000025import org.apache.maven.artifact.Artifact;
Stuart McCulloch888d6da2009-02-16 08:25:03 +000026import org.apache.maven.plugin.MojoExecutionException;
Guillaume Nodeted7b1102015-07-09 19:45:09 +000027import org.apache.maven.shared.dependency.graph.DependencyNode;
Stuart McCulloch888d6da2009-02-16 08:25:03 +000028
Stuart McCulloch888d6da2009-02-16 08:25:03 +000029
30/**
31 * Exclude selected dependencies from the classpath passed to BND.
Carsten Ziegeler82d87402015-03-04 13:26:21 +000032 *
Richard S. Hall3bc8afd2009-08-12 19:03:19 +000033 * @author <a href="mailto:dev@felix.apache.org">Felix Project Team</a>
Stuart McCulloch888d6da2009-02-16 08:25:03 +000034 */
35public final class DependencyExcluder extends AbstractDependencyFilter
36{
37 /**
38 * Excluded artifacts.
39 */
Carsten Ziegeler82d87402015-03-04 13:26:21 +000040 private final Collection<Artifact> m_excludedArtifacts;
Stuart McCulloch888d6da2009-02-16 08:25:03 +000041
42
Guillaume Nodeted7b1102015-07-09 19:45:09 +000043 public DependencyExcluder( DependencyNode dependencyGraph, Collection<Artifact> dependencyArtifacts )
Stuart McCulloch888d6da2009-02-16 08:25:03 +000044 {
Guillaume Nodeted7b1102015-07-09 19:45:09 +000045 super( dependencyGraph, dependencyArtifacts );
Stuart McCulloch888d6da2009-02-16 08:25:03 +000046
Carsten Ziegeler82d87402015-03-04 13:26:21 +000047 m_excludedArtifacts = new HashSet<Artifact>();
Stuart McCulloch888d6da2009-02-16 08:25:03 +000048 }
49
50
51 public void processHeaders( String excludeDependencies ) throws MojoExecutionException
52 {
53 m_excludedArtifacts.clear();
54
55 if ( null != excludeDependencies && excludeDependencies.length() > 0 )
56 {
Stuart McCulloche78eff92011-10-26 21:54:03 +000057 processInstructions( excludeDependencies );
Stuart McCulloch888d6da2009-02-16 08:25:03 +000058 }
59 }
60
61
62 @Override
Carsten Ziegeler82d87402015-03-04 13:26:21 +000063 protected void processDependencies( Collection<Artifact> dependencies, String inline )
Stuart McCulloch888d6da2009-02-16 08:25:03 +000064 {
Stuart McCullochcb2a3b22009-09-02 17:44:00 +000065 m_excludedArtifacts.addAll( dependencies );
Stuart McCulloch888d6da2009-02-16 08:25:03 +000066 }
67
68
Carsten Ziegeler82d87402015-03-04 13:26:21 +000069 public Collection<Artifact> getExcludedArtifacts()
Stuart McCulloch888d6da2009-02-16 08:25:03 +000070 {
71 return m_excludedArtifacts;
72 }
73}