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

org.objectweb.fractal.adl.mojo.StaticJavaGeneratorTestMojo Maven / Gradle / Ivy

There is a newer version: 2.6.1
Show newest version
/**
 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 2.1 of the License, or any later version.

 This library is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 Lesser General Public License for more details.

 You should have received a copy of the GNU Lesser General Public
 License along with this library; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
 USA

  Contributor(s):
  - Philippe Merle (set the class loader used to obtain the Fractal ADL Factory)
 */

package org.objectweb.fractal.adl.mojo;

import java.io.File;
import java.net.URL;
import java.net.URLClassLoader;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

import org.apache.maven.artifact.DependencyResolutionRequiredException;
import org.apache.maven.model.Resource;
import org.apache.maven.plugin.MojoExecutionException;

/**
 * Executes the fractaladl Java static generator with the enclosing project's
 * runtime dependencies as classpath + the mojo dependencies. This plugin lets
 * you specify:
 * 
    *
  • the ADL definition to be compiled
  • *
  • the output directory
  • *
  • the factory to use to generate the component instantiation source code
  • *
  • the backend used by the factory
  • *
* * @goal generate-test * @phase generate-test-sources * @requiresDependencyResolution test * @author Matthieu Leclercq */ public class StaticJavaGeneratorTestMojo extends AbstractStaticJavaGeneratorMojo { /** * Directory where the output Java Files will be located. * * @parameter expression="${project.build.directory}/generated-test-sources/fractaladl" * @required */ protected File outputDirectory; public void execute() throws MojoExecutionException { generate(); if (project != null) { project.addTestCompileSourceRoot(getOutputDirectory().getPath()); } } @Override protected File getOutputDirectory() { return outputDirectory; } @Override @SuppressWarnings("unchecked") protected ClassLoader getClassLoader() { try { // String outputDirectory = project.getBuild().getOutputDirectory(); // URL targetClassesUrl = new File(outputDirectory).toURL(); List classpathsUrls = new ArrayList(); /* contains the enclosing project dependencies and sources */ for (Object sourceRoots : project.getTestCompileSourceRoots()) { addToClasspath(classpathsUrls, (String) sourceRoots); } for (Object resource : project.getTestResources()) { addToClasspath(classpathsUrls, ((Resource) resource).getDirectory()); } for (Object compileElem : project.getTestClasspathElements()) { addToClasspath(classpathsUrls, (String) compileElem); } /* * the parent ClassLoader is needed to resolve the dependencies carried by * the MOJO itself */ URLClassLoader result = new URLClassLoader(classpathsUrls .toArray(new URL[0]), Thread.currentThread() .getContextClassLoader()); return result; } catch (Exception e) { e.printStackTrace(); throw new RuntimeException( "Unable to adjust class loader to include compiled sources and runtime dependencies"); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy