One feature that I would like is the ability to hook into the deployment process.
This way, I could build a custom soloution as a workaround for
http://www.myeclipseide.com/PNphpBB2+file-viewtopic-t-2431-sid-47246481e1e53d46ca135a2afb413b13.html
It will also allow people to build deployment soloutions for their specific environment, and possibly make work arounds for other features that are not yet implemented in MyEclipseIDE.
I would think that something like BSF or Jython (or even Ant) hooks would provide a good soloution.
For example, I am using maven to manage dependencies, which means that the JARs are in MAVEN_HOME. If MyEclipseIDE supported deployment hooks, I could do something like :
(in pseudo code)
onRedeployApp(containerDef, webApp, deploymentProfile):
for each external jar in webApp.classpath:
copy to deployemtProfile.contextRoot + “/WEB-INF/lib”
I am sure that these hooks could allow people to do all sorts of neat things.