Hi, I have downloaded the source of one of your colleagues with some lbj files:
http://cogcomp.cs.illinois.edu/page/resource_view/107
and so I install lbjava from here. After finishing a maven install of lbjava, I am still stuck.
The source comes with the following script:
java -Xmx5G -XX:MaxPermSize=5G -cp $CLASSPATH:class LBJ2.Main -sourcepath src -gsp lbj -d class article.lbj
javac -classpath $CLASSPATH:class -sourcepath lbj:src -d class src/esl/*.java
The first line of the script goes well after I replace $CLASSPATH with the path to LBJ2.jar.
Now when running the second line, one of java source in "src/esl/*.java" fails because it contains a call to a function in "article.lbj"
May I know how to get the 2nd line to succeed? Currently, the $CLASSPATH of the 2nd line is exactly the same as the first line, pointing to LBJ2.jar
Any help would be appreciated.