You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Seth Mason <se...@slackorama.com> on 2007/05/02 18:26:25 UTC

OT: JAXWS Maven2 plugin

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: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


AW: OT: JAXWS Maven2 plugin

Posted by Gonne Martens <go...@mobileview.com>.
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:dantran@gmail.com] 
Gesendet: Mittwoch, 2. Mai 2007 23:00
An: Maven Users List; slackorama@gmail.com
Betreff: Re: OT: JAXWS Maven2 plugin

where did you get it?

java.net?


On 5/2/07, Seth Mason <se...@slackorama.com> 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: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: OT: JAXWS Maven2 plugin

Posted by Dan Tran <da...@gmail.com>.
where did you get it?

java.net?


On 5/2/07, Seth Mason <se...@slackorama.com> 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: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>