On 1 November 2012 16:05, Jeff <[email protected]> wrote:
> Does anyone use Eclipse Indigo + Maven and Enunciate?  If so, are you able
> to run/debug the web app?
>
> I recently retrofitted Enunciate into a project and Eclipse doesn't seem to
> recognize the web.xml file that Enunciate generates as part of the Maven
> build and so the service won't load.
>
> Anyone know how to get around this?

I've never used (or indeed heard of!) Enunciate. However, I suspect
you'll need to tell Maven where the new web.xml can be found;
something like ...

<build>
        <plugins>
                <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-war-plugin</artifactId>
                        <version>2.3</version>
                        <configuration>
                                
<webXml>${project.build.directory}/enunciate-generated-web.xml</webXml>
                        </configuration>
                </plugin>
        </plugins>
</build>

might do it.

Greg
_______________________________________________
m2e-users mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/m2e-users

Reply via email to