You need to add the <dependency> for the tuscany-war plugin's
<configuration> for your client project POM as follows.
<build>
<defaultGoal>package</defaultGoal>
<finalName>sample-helloworldws</finalName>
<plugins>
<plugin>
<groupId>org.apache.tuscany.sca.plugins</groupId>
<artifactId>tuscany-war-plugin</artifactId>
<version>${scaImplVersion}</version>
<executions>
<execution>
<id>tuscany-war</id>
<goals>
<goal>tuscany-war</goal>
</goals>
</execution>
</executions>
<configuration>
<extensions>
<dependency>
<groupId>org.apache.tuscany.sca.services.container</groupId>
<artifactId>axis2</artifactId>
<version>container-das</version>
</dependency>
</extensions>
</configuration>
</plugin>
</plugins>
</build>
Thanks,
Raymond
----- Original Message -----
From: "Luciano Resende" <[EMAIL PROTECTED]>
To: "tuscany-dev" <[email protected]>
Sent: Saturday, November 18, 2006 12:50 PM
Subject: SCA Extensions and Maven plugin
How do i tell the maven plugin to put my new container into :
\container-
das-sample-client-1.0-incubator-SNAPSHOT\WEB-INF\tuscany\extensions
Right now I have the following in my pom file for the client app
<dependency>
<groupId>org.apache.tuscany.sca.services.containers</groupId>
<artifactId>container-das</artifactId>
<version>${pom.version}</version>
<scope>compile</scope>
</dependency>
But look like this only place the new container into WEB-INF\lib and then
SCA is not finding it, and I have to manually move it to the
tuscany\extensions to have it working.
--
Luciano Resende
http://people.apache.org/~lresende
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]