1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.codehaus.gmavenplus.mojo;
18
19 import org.apache.maven.artifact.DependencyResolutionRequiredException;
20 import org.apache.maven.plugin.MojoExecutionException;
21 import org.apache.maven.plugins.annotations.LifecyclePhase;
22 import org.apache.maven.plugins.annotations.Mojo;
23 import org.apache.maven.plugins.annotations.Parameter;
24 import org.apache.maven.plugins.annotations.ResolutionScope;
25 import org.apache.maven.shared.model.fileset.FileSet;
26
27 import java.io.File;
28 import java.lang.reflect.InvocationTargetException;
29 import java.net.MalformedURLException;
30
31
32
33
34
35
36
37
38
39 @Mojo(name = "generateTestStubs", defaultPhase = LifecyclePhase.GENERATE_TEST_SOURCES, requiresDependencyResolution = ResolutionScope.TEST, threadSafe = true)
40 public class GenerateTestStubsMojo extends AbstractGenerateStubsMojo {
41
42
43
44
45
46 @Parameter
47 protected FileSet[] testSources;
48
49
50
51
52 @Parameter(defaultValue = "${project.build.directory}/generated-sources/groovy-stubs/test")
53 protected File testStubsOutputDirectory;
54
55
56
57
58 @Parameter(property = "maven.test.skip", defaultValue = "false")
59 protected boolean skipTests;
60
61
62
63
64
65
66 @Override
67 public void execute() throws MojoExecutionException {
68 if (skipTests) {
69 getLog().info("Generation of test stubs is skipped.");
70 return;
71 }
72
73 minGroovyVersion = GROOVY_1_8_2;
74 try {
75 try {
76 getLog().debug("Project test classpath:\n" + project.getTestClasspathElements());
77 } catch (DependencyResolutionRequiredException e) {
78 getLog().debug("Unable to log project test classpath");
79 }
80
81 doStubGeneration(getTestFiles(testSources, false), project.getTestClasspathElements(), testStubsOutputDirectory);
82 logGeneratedStubs(testStubsOutputDirectory);
83 resetStubModifiedDates(getStubs(testStubsOutputDirectory));
84
85
86 project.addTestCompileSourceRoot(testStubsOutputDirectory.getAbsolutePath());
87 } catch (ClassNotFoundException e) {
88 throw new MojoExecutionException("Unable to get a Groovy class from classpath (" + e.getMessage() + "). Do you have Groovy as a compile dependency in your project?", e);
89 } catch (InvocationTargetException e) {
90 throw new MojoExecutionException("Error occurred while calling a method on a Groovy class from classpath.", e);
91 } catch (InstantiationException e) {
92 throw new MojoExecutionException("Error occurred while instantiating a Groovy class from classpath.", e);
93 } catch (IllegalAccessException e) {
94 throw new MojoExecutionException("Unable to access a method on a Groovy class from classpath.", e);
95 } catch (DependencyResolutionRequiredException e) {
96 throw new MojoExecutionException("Test dependencies weren't resolved.", e);
97 } catch (MalformedURLException e) {
98 throw new MojoExecutionException("Unable to add project test dependencies to classpath.", e);
99 }
100 }
101
102 }