score:1

Accepted answer

in the traditional maven structure (which this project seems to have), src isn't the root of the sources. under it, you'll find (up to) two folders:

  1. src/main/java is the source root for the "production" code
  2. src/test/java is the source root for the test code.

score:0

see maven / introduction to the standard directory layout:

src/main/java application/library sources
... ...

Related Query

More Query from same tag