I'm restructuring an existing project to the Maven Standard Structure and don't really know where to put certain items.
For example, I have a directory that contains a group of Java Classes that is used to append a toString() to other Classes. I'm not sure were to put this in respect to the standard structure of maven.
I guess the best way to describe these classes is "extra, but still important stuff". I'm pretty new to Maven and build tooling in general, so any help or guidance is welcome!
**Edit: So I was informed that these classes don't get compiled and are not "real" Java classes. Thinking more about this, I'm inclined to place it under src/main/resources then. Is that agreeable?