I am setting up hyperjaxb
to run in eclipse using this tutorial. So far, I have gotten it to marshal
and unmarshal
, but it does not yet t
For your immediate problem: if Main.java
resides in src/main/java
and needs to call TestFunctions.java
, then normal Maven development would put TestFunctions.java
in src/main/java
and not src/test/java
. (It's generally a bad idea to have your "real" code, the stuff in src/main
, depending on anything in src/test
).