Details
-
Sub-task
-
Status: Open
-
Major
-
Resolution: Unresolved
-
2.0-beta2
-
None
Description
Quote from :Aaron Anderson:
I am having issues building the dao-hibernate module in the ODE trunk (2.0) on Windows because of the variable substitution of build path without the escaping of the backslash in the groovy script. Utilizing the gmaven project variable replacing the line
def process_instance_hbm_file = new File('${project.build.outputDirectory}', 'org/apache/ode/daohib/bpel/hobj/HProcessInstance.hbm.xml')
with
def process_instance_hbm_file = new File(project.build.outputDirectory, 'org/apache/ode/daohib/bpel/hobj/HProcessInstance.hbm.xml')
fixes the issue.