I have java class files and property files in the same directory.
src/main/java/com/berlin/Test.class
src/main/java/com/berlin/Test.properties
With t
For the Maven reasons, you should place properties file into src/main/resources, not in src/main/java directory (keeping the same subfolder structure).
That being said, to get what you want you need to replace (in your pom.xml) src
with src/main/java
. Not tested, but if you have problems please share.