After running the eclipseAll, I found in the community folder that no .classpath or .project files where generated.
I tried running a maven build and got an error "Parent POM not found:" so I open one of the community project.xml files and found this is where the parent was being extended from.
<extend>${basedir}/../../org.openplans.geoserver.gtlibs/project.xml</extend>
I changed it to
<extend>${basedir}/../../project.xml</extend>
And it worked.
I think I could do this, not sure what my status is these days.
Wonder if we should set up a projct.xml at the community level that can include one level up? I suspect that such a file exists and was just not committed or something?
Jody
Hi,
After running the eclipseAll, I found in the community folder that no .classpath or .project files where generated.
I tried running a maven build and got an error "Parent POM not found:" so I open one of the community project.xml files and found this is where the parent was being extended from.
<extend>${basedir}/../../org.openplans.geoserver.gtlibs/project.xml</extend>
I changed it to
<extend>${basedir}/../../project.xml</extend>
And it worked.
Could this be committed into SVN
Clint
-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
Geoserver-devel mailing list
Geoserver-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/geoserver-devel
This changed has to be applied to all the community projects.
Clint Lewis wrote:
Hi,
After running the eclipseAll, I found in the community folder that no .classpath or .project files where generated.
I tried running a maven build and got an error "Parent POM not found:" so I open one of the community project.xml files and found this is where the parent was being extended from.
<extend>${basedir}/../../org.openplans.geoserver.gtlibs/project.xml</extend>
I changed it to
<extend>${basedir}/../../project.xml</extend>
And it worked.