I ended up writing a custom wsdl packaging type (along with a plugin to handle it) for a similar customer use case. If there's interest I could most likely convince the customer to donate it to some open source org.
/Anders On Wed, Aug 10, 2011 at 11:23, Adrien Ruffie - Petals Link < [email protected]> wrote: > Hello all, > > I have a first project with just "/src/main/resources/mywsdl.**wsdl" in > the project > I have following lines in this first project pom.xml: > > <groupId>com.myworld</groupId> > <artifactId>shared-wsdl</**artifactId> > <name>shared-wsdl</name> > <version>0-SNAPSHOT</version> > <build> > <plugins> > <plugin> > <artifactId>maven-jar-plugin</**artifactId> > <configuration> > <classifier>wsdl</classifier> > </configuration> > </plugin> > </plugins> > </build> > > And I have a second project with following dependency: > <dependency> > <groupId>com.myworld</groupId> > <artifactId>shared-wsdl</**artifactId> > <version>0-SNAPSHOT</version> > <classifier>wsdl</classifier> > </dependency> > > The wsdl "mywsdl.wsdl" is stored in shared-wsdl.jar, but I need just the > wsdl file out of the jar ... > Do you have an idea ? Thank > > Adrien Ruffié > - Ingénieur de recherches et développements > - Scrum Team member > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] >
