This is from an open source project where there is nearly no support. Compilation of the project went well. But I cannot test or install because of a particular property file cannot be found. I have search up and down the internet and not able to find any solutions. The organization of the director is a little bit unconventional.
some directories. core/src/main/java/org/mskcc/cbio/portal/util/Config.java.
String props = "portal.properties";
InputStream in = this.getClass().getClassLoader().getResourceAsStream(props);
...
more directoires. src/main/resources/portal.properties.
This last src directory has only one subdirectory main, and the main directory has only one resources subdirectory. The file that could not be found is located here.
I am using java 1.7. Maven 3.0.5 The command I used is mvn install
I must be missing one simple configuration somewhere.
There got to be some who can resolve this easily.