1   /*
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   */
19  package org.apache.felix.bundleplugin;
20  
21  
22  import java.util.Collection;
23  import java.util.HashSet;
24  
25  import org.apache.maven.plugin.MojoExecutionException;
26  
27  
28  /**
29   * Exclude selected dependencies from the classpath passed to BND.
30   * 
31   * @author <a href="mailto:dev@felix.apache.org">Felix Project Team</a>
32   */
33  public final class DependencyExcluder extends AbstractDependencyFilter
34  {
35      /**
36       * Excluded artifacts.
37       */
38      private final Collection m_excludedArtifacts;
39  
40  
41      public DependencyExcluder( Collection dependencyArtifacts )
42      {
43          super( dependencyArtifacts );
44  
45          m_excludedArtifacts = new HashSet();
46      }
47  
48  
49      public void processHeaders( String excludeDependencies ) throws MojoExecutionException
50      {
51          m_excludedArtifacts.clear();
52  
53          if ( null != excludeDependencies && excludeDependencies.length() > 0 )
54          {
55              processInstructions( excludeDependencies );
56          }
57      }
58  
59  
60      @Override
61      protected void processDependencies( Collection dependencies, String inline )
62      {
63          m_excludedArtifacts.addAll( dependencies );
64      }
65  
66  
67      public Collection getExcludedArtifacts()
68      {
69          return m_excludedArtifacts;
70      }
71  }