Hi,
I took the JAXWS maven2 plugin (current version 1.2) from the following
repository:
<pluginRepositories>
<pluginRepository>
<id>maven2-repository.dev.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
</pluginRepository>
</pluginRepositories>
This is e.g. my plugin entry to run wsimport with JAX-WS 2.1 for 2 wsdl files:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxws-maven-plugin</artifactId>
<executions>
<execution>
<id>rel510</id>
<goals>
<goal>wsimport</goal>
</goals>
<configuration>
<wsdlFiles>
<wsdlFile>REL-5-MM7-1-0.wsdl</wsdlFile>
</wsdlFiles>
<bindingFiles>
<bindingFile>customSchema510.xml</bindingFile>
<bindingFile>customWsdl510.xml</bindingFile>
</bindingFiles>
<staleFile>
${project.build.directory}/jaxws/stale/rel510.staleFlag.
</staleFile>
</configuration>
</execution>
<execution>
<id>rel513</id>
<goals>
<goal>wsimport</goal>
</goals>
<configuration>
<wsdlFiles>
<wsdlFile>REL-5-MM7-1-3.wsdl</wsdlFile>
</wsdlFiles>
<bindingFiles>
<bindingFile>customSchema513.xml</bindingFile>
<bindingFile>customWsdl513.xml</bindingFile>
</bindingFiles>
<staleFile>
${project.build.directory}/jaxws/stale/rel513.staleFlag.
</staleFile>
</configuration>
</execution>
</executions>
<configuration>
<wsdlDirectory>${basedir}/src/main/wsdl</wsdlDirectory>
<bindingDirectory>${basedir}/src/main/jaxws</bindingDirectory>
<sourceDestDir>
${basedir}/target/generated-sources/jaxws
</sourceDestDir>
<verbose>true</verbose>
</configuration>
</plugin>
Kind regards,
Gonne
-----Ursprüngliche Nachricht-----
Von: Dan Tran [mailto:[EMAIL PROTECTED]
Gesendet: Mittwoch, 2. Mai 2007 23:00
An: Maven Users List; [EMAIL PROTECTED]
Betreff: Re: OT: JAXWS Maven2 plugin
where did you get it?
java.net?
On 5/2/07, Seth Mason <[EMAIL PROTECTED]> wrote:
>
> Apologies if this is too off topic, but has anyone used the JAXWS
> maven2 plugin? I just downloaded the samples and those don't even
> run. I keep getting errors about the plugin not existing even though
> I've tried many different repos and many different versions.
>
> There doesn't seem to be any support for it otherwise I'd ask there.
>
> Thanks in advance,
> SETH
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]