0

The package name in the class will be generated correctly, but the generated dirs hierarchy always includes the project name which is wrong as shown below, how to avoid it?

package ${groupId};

public class Main {

}

-

<fileSet filtered="true" packaged="true" encoding="UTF-8">
    <directory>src/main/java</directory>        
    <includes>
        <include>**/*.java</include>
    </includes>
</fileSet>

enter image description here

0 Answers0