webdsl-build.xml version 1.1.5
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
Submitted on 27 July 2010 at 12:54
include name=“**/.jar”
into
include name=“**/*.jar”
Issue Log
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