All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mysema.maven.apt.AnnotationProcessorMojo Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
/*
 * Copyright (c) 2009 Mysema Ltd.
 * All rights reserved.
 * 
 */
package com.mysema.maven.apt;

import java.io.File;

/**
 * AnnotationProcessorMojo calls APT processors for code generation
 * 
 * @goal process
 * @phase generate-sources
 * @requiresDependencyResolution compile
 */
public class AnnotationProcessorMojo extends AbstractProcessorMojo {

  /**
   * @parameter expression="${project.build.sourceDirectory}" required=true
   */
  protected File sourceDirectory;
  

    @Override
    protected File getSourceDirectory() {
        return sourceDirectory;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy