Using eclipse, the libraries for the native java from the directory lib are not copied to ${currentdir}/.servletapp/bin/WEB-INF/lib when building a new version.
To make it work change two lines in \eclipse\plugins\webdsl.editor_1.1.5\webdsl-template\webdsl-build.xml:

On line 174 change
include name=“**/.class”
into
include name=“**/*.class”

On line 175 change
include name=“**/.jar”
into
include name=“**/*.jar”

Submitted on 27 July 2010 at 12:54

On 2 August 2010 at 11:32 Danny Groenewegen closed this issue.

On 2 August 2010 at 11:32 Danny Groenewegen commented:

Changed **/.class to **/*.class and **/.jar to **/*.jar to fix the copying. This fix will be in the next plugin release.

Log in to post comments