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 ?