Compiling/Build Errors
Submitted by Guest on Sat, 07/12/2013 - 12:16
I have been perusing the source for a while now, and a coupld of errors hav bugged me that I am sure is in my configuration but I would like to resolve if it doesnt take more that 10sec of someones time
1. In the Public Class Securityloader (Securityloader.java) under org.openvpms.tools.security.loader
the "private Securitydata data" declaration throws a error that it cant find the class Securitydata, does a class declaration exist for that type or is it final.?
2. Under org.openvpms.report.tools.TemplateLoader.java it tries to add
import org.openvpms.report.jasper.tools.Template;
import org.openvpms.report.jasper.tools.Templates;
I cant find a class declaration or package for this either.
I am assuming its an error.
Cheers
Ben
Re: Compiling/Build Errors
These classes are generated as part of the build process by the castor-maven-plugin.
They can be generated by running:
mvn generate-sources
from the command line in the openvpms-frameworks and openvpms-reports directories.
-Tim