I have a library that I create based on some WSDL / XSD definitions. I had a problem adding compiled classes to an eclipse project. I see that using the "mvn compile" .class files as well as .java files are generated. The problem is that even when creating .class files in eclipse, an error still appears in the import statement "import com.whatever.SomeService_Service", which was generated by one of the plugins. I tried to force the source to go into the project / src / main / java directory, but when the project is cleaned up, it deletes the files that I created. Has anyone come across this before / found a way to make it recognize that class files exist? Thank.
source
share