users@wadl.java.net

generate multiple WADL files, each in its own package

From: Pham Duc Tri <phamductri_at_gmail.com>
Date: Thu, 1 Jul 2010 16:03:02 -0700

I wonder if the library is capable of generating multiple WADL files, with
each wadl generated codes reside in its own package. For example (using
Maven):

 <configuration>
<sourceDirectory>firstWADL.wadl</sourceDirectory>
 <packageName>com.java.firstpackage</packageName>
<autopackaging>true</autopackaging>
 </configuration>

<configuration>
<sourceDirectory>secondWADL.wadl</sourceDirectory>
 <packageName>com.java.secondpackage</packageName>
<autopackaging>true</autopackaging>
 </configuration>

I don't see something like this is mentioned in the documentation. Is it
possible to do this ?