I downloaded Click 1.5 and did the following:
ant get-deps
ant build-all
ant project-quick-start
Following is a part of the build.xml that was created for the new application:
<javac srcdir="src"
destdir="WebContent/WEB-INF/classes"
debug="true"
encoding="ISO-8859-1"
source="1.4">
<classpath refid="classpath"/>
</javac>
Shouldn't the line 'source="1.4">' be 'source="1.5>"' or does it not make any
difference?
I looked at the instructions on the "Upgrade Path" web page, but it's not clear
to me which files need to be replaced before I recompile an application that was
created using Click 1.4.2.
Do I only need to replace "click-1.4.2.jar" and "click-extras-1.4.2.jar" in
folder "...\WebContent\Web-INF\lib" with "click-1.5.jar" and
"click-extras-1.5.jar"? My application did build okay, but are there other
changes that should be made?
Thanks,
Paul