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

Reply via email to