- Haydn Pang
- Michael Tran
- Kelvin Pham
- Rob Marquez
- Josue Crandall
- To run project 3, simply execute the "do.bat" batch script in the project_3 folder:
cd project_3
do.bat
Linux Environment
- Run the bash script "semantic_gen.sh"
./semantic_gen.sh
- If permission is denied, grant yourself permission:
chmod +x semantic_gen
- If none of the above work, then you may manually compile and run as follows:
javac -cp "./jena_lib/*" -d bin -sourcepath src src/*.java
java -cp "./jena_lib/*":bin: SemanticGen
Windows Environment
- Run the batch script "semantic_gen.bat" in command prompt
semantic_gen.bat
- If the above does not work, then you may manually compile and run as follows:
javac -cp "./jena_lib/*" -d bin -sourcepath src src/*.java
java -cp "./jena_lib/*";bin; SemanticGen
- Jena API (For creating RDF/OWL, located in the jena_lib folder)
- Java 8 (to run the program)