001 /* 002 * Licensed to the Apache Software Foundation (ASF) under one 003 * or more contributor license agreements. See the NOTICE file 004 * distributed with this work for additional information 005 * regarding copyright ownership. The ASF licenses this file 006 * to you under the Apache License, Version 2.0 (the 007 * "License"); you may not use this file except in compliance 008 * with the License. You may obtain a copy of the License at 009 * 010 * http://www.apache.org/licenses/LICENSE-2.0 011 * 012 * Unless required by applicable law or agreed to in writing, 013 * software distributed under the License is distributed on an 014 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 015 * KIND, either express or implied. See the License for the 016 * specific language governing permissions and limitations 017 * under the License. 018 */ 019 020 package org.apache.geronimo.genesis.dependency; 021 022 import org.apache.maven.artifact.resolver.ResolutionListener; 023 import org.apache.maven.artifact.Artifact; 024 import org.apache.maven.artifact.versioning.VersionRange; 025 026 /** 027 * ??? 028 * 029 * @version $Rev: 454266 $ $Date: 2006-10-08 20:20:03 -0700 (Sun, 08 Oct 2006) $ 030 */ 031 public class ResolutionListenerAdapter 032 implements ResolutionListener 033 { 034 public void testArtifact(Artifact artifact) { 035 // empty 036 } 037 038 public void startProcessChildren(Artifact artifact) { 039 // empty 040 } 041 042 public void endProcessChildren(Artifact artifact) { 043 // empty 044 } 045 046 public void includeArtifact(Artifact artifact) { 047 // empty 048 } 049 050 public void omitForNearer(Artifact artifact, Artifact artifact1) { 051 // empty 052 } 053 054 public void updateScope(Artifact artifact, String string) { 055 // empty 056 } 057 058 public void manageArtifact(Artifact artifact, Artifact artifact1) { 059 // empty 060 } 061 062 public void omitForCycle(Artifact artifact) { 063 // empty 064 } 065 066 public void updateScopeCurrentPom(Artifact artifact, String string) { 067 // empty 068 } 069 070 public void selectVersionFromRange(Artifact artifact) { 071 // empty 072 } 073 074 public void restrictRange(Artifact artifact, Artifact artifact1, VersionRange versionRange) { 075 // empty 076 } 077 }