I downloaded the application server Java source code from the i2b2.org site and compiling it for deployment. This application runs on top of JBoss. There are 8 project folders in the workspace that I switched to in Eclipse (root directory of where these 8 projects live). Got several errors.
Looks like someone else encountered the same issues:
https://www.i2b2.org/software/augrepo.html
Here is the complete list of errors when compiling:
Here's one:
Project 'edu.harvard.i2b2.common' is missing required source folder: 'gensrc'
If I right click the 'edu.harvard.i2b2.common' project, and choose 'Build Path', and choose 'Configure Build Path', and navigate to the 'Source' tab, I see that we have a missing folder.
In Windows, I see that the folder exists. Looks like my CLASSPATH is expecting the folder, but the project doesn't have it included. What is the proper way to fix this in Eclipse?
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src/core"/>
<classpathentry kind="src" path="gensrc"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="lib" path="lib/commons/commons-codec-1.3.jar"/>
<classpathentry kind="lib" path="lib/commons/commons-collections-2.1.1.jar"/>
<classpathentry kind="lib" path="lib/commons/commons-httpclient-3.0.jar"/>
<classpathentry kind="lib" path="lib/commons/commons-logging-1.0.4.jar"/>
<classpathentry kind="lib" path="lib/jdbc/ojdbc14.jar"/>
<classpathentry kind="lib" path="lib/dom4j/dom4j-1.6.1.jar"/>
<classpathentry kind="lib" path="lib/hibernate/hibernate3.jar"/>
<classpathentry kind="lib" path="lib/j2ee/jbossall-client.jar"/>
<classpathentry kind="lib" path="lib/jaxb/jaxb-api.jar"/>
<classpathentry kind="lib" path="lib/jaxb/jaxb-impl.jar"/>
<classpathentry kind="lib" path="lib/jaxb/jaxb-xjc.jar"/>
<classpathentry kind="lib" path="lib/spring/spring-2.0.jar"/>
<classpathentry kind="lib" path="lib/jaxb/jaxb1-impl.jar"/>
<classpathentry kind="lib" path="lib/jaxb/jsr173_1.0_api.jar"/>
<classpathentry kind="lib" path="lib/axis2-1.1/axiom-api-1.2.jar"/>
<classpathentry kind="lib" path="lib/axis2-1.1/axiom-dom-1.2.jar"/>
<classpathentry kind="lib" path="lib/axis2-1.1/axiom-impl-1.2.jar"/>
<classpathentry kind="lib" path="lib/axis2-1.1/axis2-adb-1.1.jar"/>
<classpathentry kind="lib" path="lib/axis2-1.1/axis2-adb-codegen-1.1.jar"/>
<classpathentry kind="lib" path="lib/axis2-1.1/axis2-codegen-1.1.jar"/>
<classpathentry kind="lib" path="lib/axis2-1.1/axis2-java2wsdl-1.1.jar"/>
<classpathentry kind="lib" path="lib/axis2-1.1/axis2-jibx-1.1.jar"/>
<classpathentry kind="lib" path="lib/axis2-1.1/axis2-kernel-1.1.jar"/>
<classpathentry kind="lib" path="lib/axis2-1.1/axis2-saaj-1.1.jar"/>
<classpathentry kind="lib" path="lib/axis2-1.1/mail-1.4.jar"/>
<classpathentry kind="lib" path="lib/axis2-1.1/neethi-2.0.jar"/>
<classpathentry kind="lib" path="lib/axis2-1.1/stax-api-1.0.1.jar"/>
<classpathentry kind="lib" path="lib/axis2-1.1/woden-1.0.0M6.jar"/>
<classpathentry kind="lib" path="lib/axis2-1.1/wsdl4j-1.6.1.jar"/>
<classpathentry kind="lib" path="lib/axis2-1.1/wstx-asl-3.0.1.jar"/>
<classpathentry kind="lib" path="lib/axis2-1.1/xml-apis-1.3.03.jar"/>
<classpathentry kind="lib" path="lib/axis2-1.1/XmlSchema-1.2.jar"/>
<classpathentry kind="lib" path="lib/junit/junit-4.4.jar"/>
<classpathentry kind="lib" path="lib/jaxb/activation-1.1.jar"/>
<classpathentry kind="output" path="classes"/>
</classpath>