Maven cannot find symbol error with intern java files -


i'm coding test file(src/test/java) maven project. problem following:

intern file cannot found: (is in src/main/java folder)

[error] /d:/swt a1/jmjrst/src/test/java/test.java:[6,13] cannot find symbol [error] symbol:   class generator [error] location: class test 

i looked this answer don't understand how configure surefire plugin exclude something. don't know how exclude doing? should remove files usage of surefire plugin, right? purpose behind that?

my surefireplugin:

        <plugin>             <groupid>org.apache.maven.plugins</groupid>             <artifactid>maven-surefire-plugin</artifactid>             <version>2.18.1</version>         </plugin>      


Comments

Popular posts from this blog

java - Spring Data JPA: Why findOne(id) executing delete query internally? -

python - Mongodb How to add addtional information when aggregating? -

java - Incorrect order of records in M-M relationship in hibernate -