Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Hi There,

I am trying to build Joget4 from source, and after following the "Building from Source" directions, have come across an error. When trying to build the wflow-wfengine project, I am getting the following error:

Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile (default-compile) on project wflow-wfengine: Compilation failure
C:\joget4\jw-community-4.0-SNAPSHOT\wflow-wfengine\src\main\java\org\joget\workflow\shark\JSPClientUtilities.java:[96,14] error: cannot access Config

This error is occurring on the following segment of code in JSPClientUtilities.java:

Code Block
public static void init() throws Exception {
     if (!sharkConfigured) {
         Shark.configure(p);   <-- FAILS HERE
         sharkConfigured = true;     
     } 
}

My machine is running Apache Maven v3.0.5, and this class includes the appropriate import, org.enhydra.shark.Shark.

Any ideas on what this could be caused by? I've searched the entire code base and have not found the class or method "Config". Thanks!