Executing Maven GWT plugin on different codebase (module) than the current project

5 views
Skip to first unread message

zakaria amine via StackOverflow

unread,
Oct 1, 2016, 3:25:08 PM10/1/16
to google-appengin...@googlegroups.com

I have a GWT project with several modules ( Client, Server, Shared,..), and I have a requirement where the Super Dev mode needs to run on App engine dev server. After compiling the client side, I am using an Ant script that copies GWT client compilation files into the server module "war" directory, and I am using the following configuration from the server module:

<plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>gwt-maven-plugin</artifactId>
            <version>2.7.0</version>
            <executions>
                <execution>
                    <goals>
                        <goal>compile</goal>
                        <goal>test</goal>
                        <goal>generateAsync</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <runTarget>index.html</runTarget>
                <modules>
                    <module>module1</module>
                    <module>module2</module>
                </modules>
                <codeServerPort>9997</codeServerPort>
                <executedProject>
                   <basedir>../${basedir}/the-project-with-the-client-side-classes/</basedir>
                  <artifactId>client-artifact-id</artifactId>
                    <version>1.0</version>
                </executedProject>
                <server>com.google.appengine.tools.development.gwt.AppEngineLauncher</server>
                <warSourceDirectory>${project.build.directory}/${project.build.finalName}</warSourceDirectory>
            </configuration>
        </plugin>

I have tried the <executedProject> option, where I am trying to specify the basedir where I want the plugin to execute the GWT compile, but I am not sure if I am using it properly. It throws a null pointer exception:

org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.codehaus.mojo:gwt-maven-plugin:2.7.0:run (default-cli) on project server: Execution default-cli of goal org.codehaus.mojo:gwt-maven-plugin:2.7.0:run failed.
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:212)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80)
at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:307)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:193)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:106)
at org.apache.maven.cli.MavenCli.execute(MavenCli.java:863)
at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:288)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:199)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)
Caused by: org.apache.maven.plugin.PluginExecutionException: Execution    default-cli of goal org.codehaus.mojo:gwt-maven-plugin:2.7.0:run failed.
at    org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:145)
at    org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:207)
... 20 more
 Caused by: java.lang.NullPointerException
at java.io.File.<init>(File.java:277)
at   org.codehaus.mojo.gwt.ClasspathBuilder.buildClasspathList(ClasspathBuilder.java:82)
at   org.codehaus.mojo.gwt.AbstractGwtMojo.getClasspath(AbstractGwtMojo.java:223)
at org.codehaus.mojo.gwt.shell.RunMojo.doExecute(RunMojo.java:327)
at org.codehaus.mojo.gwt.shell.AbstractGwtShellMojo.execute(AbstractGwtShellMojo.java:159)
at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134)
... 21 more

Any help would be appreciated



Please DO NOT REPLY directly to this email but go to StackOverflow:
http://stackoverflow.com/questions/39810612/executing-maven-gwt-plugin-on-different-codebase-module-than-the-current-proje
Reply all
Reply to author
Forward
0 new messages