View Javadoc
1   package org.codehaus.modello.maven;
2   
3   import org.apache.maven.plugins.annotations.LifecyclePhase;
4   import org.apache.maven.plugins.annotations.Mojo;
5   
6   /**
7    * Creates classes that can convert between different versions of the model.
8    *
9    * @author <a href="mailto:brett@apache.org">Brett Porter</a>
10   */
11  @Mojo(name = "converters", defaultPhase = LifecyclePhase.GENERATE_SOURCES, threadSafe = true)
12  public class ModelloConvertersMojo extends AbstractModelloSourceGeneratorMojo {
13      protected String getGeneratorType() {
14          return "converters";
15      }
16  }