remove -webapp from the finalname in all other webapps, just like it is now in the cycle webapp. in the distro, the .war files should not have -webapp in their name.
to be consistent, the setup script should be updated so that the modeler war version is cut out directly at the download, rather then with the copy to tomcat
@see setup/build.xml :
<target name="deploy.activiti.modeler.into.tomcat" unless="skip.deploy.activiti.modeler">
<antcall target="internal.download.activiti.modeler" /> <!-- Can't use depends for this, due to http://ant.apache.org/faq.html#stop-dependency-->
<mkdir dir="${activiti.modeler.repository.home}"/>
<copy file="${downloads.dir}/activiti-modeler-${activiti.version}.war"
tofile="${tomcat.home}/webapps/activiti-modeler.war"/>
</target>
<target name="internal.download.activiti.modeler" unless="is.activiti.modeler.available">
<echo message="This could take a while. Set the 'skip.deploy.activiti.modeler' property in user.home/.activiti/build.properties to skip this step" />
<mkdir dir="${downloads.dir}"/>
<get src="${activiti.modeler.download.url}" dest="${downloads.dir}/activiti-modeler-${activiti.version}.war"/>
</target>
remove -webapp from the finalname in all other webapps, just like it is now in the cycle webapp. in the distro, the .war files should not have -webapp in their name.
to be consistent, the setup script should be updated so that the modeler war version is cut out directly at the download, rather then with the copy to tomcat
@see setup/build.xml :
<target name="deploy.activiti.modeler.into.tomcat" unless="skip.deploy.activiti.modeler">
<antcall target="internal.download.activiti.modeler" /> <!-- Can't use depends for this, due to http://ant.apache.org/faq.html#stop-dependency-->
<mkdir dir="${activiti.modeler.repository.home}"/>
<copy file="${downloads.dir}/activiti-modeler-${activiti.version}.war"
tofile="${tomcat.home}/webapps/activiti-modeler.war"/>
</target>
<target name="internal.download.activiti.modeler" unless="is.activiti.modeler.available">
<echo message="This could take a while. Set the 'skip.deploy.activiti.modeler' property in user.home/.activiti/build.properties to skip this step" />
<mkdir dir="${downloads.dir}"/>
<get src="${activiti.modeler.download.url}" dest="${downloads.dir}/activiti-modeler-${activiti.version}.war"/>
</target>