org.apache.maven.model.converter
Interface ConverterListener


public interface ConverterListener

Classes that wants to listen in on the POM conversion process should implement this interface.


Method Summary
 void addDependencyEvent(String groupId, String artifactId, String version)
           
 void addPluginEvent(String groupId, String artifactId)
           
 void addReportEvent(String groupId, String artifactId)
           
 void debug(String message)
           
 void debug(String message, Throwable throwable)
           
 void error(String message)
           
 void error(String message, Throwable throwable)
           
 void info(String message)
           
 void info(String message, Throwable throwable)
           
 void relocatePluginEvent(String oldGroupId, String oldArtifactId, String newGroupId, String newArtifactId)
           
 void relocateReportEvent(String oldGroupId, String oldArtifactId, String newGroupId, String newArtifactId)
           
 void removePluginEvent(String groupId, String artifactId)
           
 void removeReportEvent(String groupId, String artifactId)
           
 void savePomEvent(File pomFileFile, boolean alreadyExist)
           
 void warn(String message)
           
 void warn(String message, Throwable throwable)
           
 

Method Detail

debug

void debug(String message)

debug

void debug(String message,
           Throwable throwable)

info

void info(String message)

info

void info(String message,
          Throwable throwable)

warn

void warn(String message)

warn

void warn(String message,
          Throwable throwable)

error

void error(String message)

error

void error(String message,
           Throwable throwable)

addDependencyEvent

void addDependencyEvent(String groupId,
                        String artifactId,
                        String version)

addPluginEvent

void addPluginEvent(String groupId,
                    String artifactId)

relocatePluginEvent

void relocatePluginEvent(String oldGroupId,
                         String oldArtifactId,
                         String newGroupId,
                         String newArtifactId)

removePluginEvent

void removePluginEvent(String groupId,
                       String artifactId)

addReportEvent

void addReportEvent(String groupId,
                    String artifactId)

relocateReportEvent

void relocateReportEvent(String oldGroupId,
                         String oldArtifactId,
                         String newGroupId,
                         String newArtifactId)

removeReportEvent

void removeReportEvent(String groupId,
                       String artifactId)

savePomEvent

void savePomEvent(File pomFileFile,
                  boolean alreadyExist)


Copyright © 2002–2013 The Apache Software Foundation. All rights reserved.