Problem:
I got the exception when I run the test case, which is using the generated WSDL source file, and got "Class not found exception" . Because my test case not able to find the genearted source code from WSDL.
Solution:
I added the below line gradle and its working fine.
sourceSets.test.java.srcDirs = ['.apt_generated/xxx,'src/test/java']
I got the exception when I run the test case, which is using the generated WSDL source file, and got "Class not found exception" . Because my test case not able to find the genearted source code from WSDL.
Solution:
I added the below line gradle and its working fine.
sourceSets.test.java.srcDirs = ['.apt_generated/xxx,'src/test/java']