You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cxf.apache.org by jaybytez <ja...@yahoo.com> on 2010/09/18 03:03:26 UTC

Accessing 2.2.11-Snapshot for Tools

What is the right way to configure my pom.xml for accessing a snapshot
version of the tools?

Are there additional dependencies I need to add?

Thanks for the help?

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.cxf</groupId>
				<artifactId>cxf-java2ws-plugin</artifactId>
				<version>2.2.11-SNAPSHOT</version>
				<dependencies>
					<dependency>
						<groupId>org.apache.cxf</groupId>
						<artifactId>cxf-rt-frontend-jaxws</artifactId>
						<version>2.2.10</version>
					</dependency>
					<dependency>
						<groupId>org.apache.cxf</groupId>
						<artifactId>cxf-rt-frontend-simple</artifactId>
						<version>2.2.10</version>
					</dependency>
					<dependency>
						<groupId>${project.groupId}</groupId>
						<artifactId>model-foo</artifactId>
						<version>${project.version}</version>
					</dependency>
				</dependencies>

				<executions>
					<execution>
						<id>process-classes</id>
						<phase>process-classes</phase>
						<configuration>
							<className>com.food.FooModel</className>
							<genWsdl>true</genWsdl>
							<verbose>true</verbose>
							<frontend>jaxws</frontend>
							<databinding>jaxb</databinding>
							<genWrapperbean>true</genWrapperbean>
							<argline>-createxsdimports -s target/generated-sources</argline>
						</configuration>
						<goals>
							<goal>java2ws</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
	<dependencies>
		<dependency>
			<groupId>${project.groupId}</groupId>
			<artifactId>model-foo</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>org.apache.cxf</groupId>
			<artifactId>cxf-rt-frontend-jaxws</artifactId>
			<version>2.2.10</version>
		</dependency>
		<dependency>
			<groupId>org.apache.cxf</groupId>
			<artifactId>cxf-rt-frontend-simple</artifactId>
			<version>2.2.10</version>
		</dependency>
	</dependencies>
-- 
View this message in context: http://cxf.547215.n5.nabble.com/Accessing-2-2-11-Snapshot-for-Tools-tp2844474p2844474.html
Sent from the cxf-user mailing list archive at Nabble.com.