The problem as it turned out was to do with classes generated by wsimport. My bad, I should have paid more attention. Lets see the error message first though.
This is a part of the JWSC output, but it shows the error.
JWSC Error Output
...
[jwsc] JWS: processing module XXXX
[jwsc] Parsing source files
[jwsc] Parsing source files
[AntUtil.deleteDir] Deleting directory /var/folders/y2/__zvkpb547zg92kgv6rx5m540000gn/T/_fe1arz
BUILD FAILED
/XXXX/build.xml:181: The following error occurred while executing this line:
/XXXX/build_targets.xml:200: weblogic.wsee.tools.WsBuildException: Wrong number of class files. Expected 114, got 110
Update: The original fix suggested to delete all of the package-info.java files. Instead, I started excluding them in my build system, I think this is a cleaner approach. So my jwsfileset looks like this now...
JWSC Target
...
<jwsfileset srcdir="${path.src}" type="JAXWS">
<include name="**/*.java" />
<exclude name="**/package-info.java"/>
</jwsfileset>
...
Below is the original approach I used.
So the fix is to find and delete all of the package-info.java files in your source directory. JWSC seems to expect these, but they don't get processed somehow. No issue, there is nothing useful in these files so they are quite safe to delete.
After I deleted all of these in my project, the issue went away.
-i