/* * Copyright 2011 SpringSource, a division of VMware, Inc * * andrew - Initial API and implementation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.codehaus.groovy.eclipse.compiler; import org.apache.maven.plugin.AbstractMojo; import org.apache.maven.plugin.MojoExecutionException; import org.apache.maven.plugin.MojoFailureException; import org.apache.maven.project.MavenProject; /** * Adds src/main/groovy and src/main/groovy as source folders * * @author Andrew Eisenberg * @created Nov 25, 2011 * @goal add-groovy-build-paths * @phase initialize * @NOexecute phase="initialize" lifecycle="default" * @NOrequiresDependencyResolution compile * @since 2.6.0 */ public class AddGroovySourceFolders extends AbstractMojo { /** * @parameter expression="${project}" * @required * @readonly * @since 1.0 */ private MavenProject project; public void execute() throws MojoExecutionException, MojoFailureException { getLog().info("Adding /src/main/groovy to the list of source folders"); this.project.addCompileSourceRoot(project.getBasedir() + "/src/main/groovy"); getLog().info("Adding /src/test/groovy to the list of test source folders"); this.project.addTestCompileSourceRoot(project.getBasedir() + "/src/test/groovy"); } }