3
I have a Maven eclipse project that uses a Folder class. That folder has the . java and .class. The classes I use in the project are in build path as class Folder, when I do Maven install it gives me error:
[ERROR] location: class PushJobProcessor
[ERROR] xxx\java\com\xxx\Processor.java:[152,11] error: cannot find symbol
[ERROR] -> [Help 1]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
I tried to change the version of java, but nothing... They can give an idea of what it is ?
Thank you for your attention
What is the structure of your source Folder? I’ve had problems for some time because Maven only recognized the default structure via command line src/main/java, other than that additional settings are required on pom.xml
– Luan Kevin Ferreira
How is your pom.xml? Please put it in question.
– Fagner Fonseca
I separated my test code from the project and put it into another project, after which the error disappeared.
– Izaias Dantas