Community
Participate
Working Groups
Plug-ins which have a custom build.xml file will have to change when we ship plug-ins as JARs since they have the old JAR names/formats hard-coded in the build file. Will add annotation explaining what needs to be done soon...
Where you had a line saying something like: ../org.eclipse.core.runtime/runtime.jar the line should become ../org.eclipse.core.runtime/@dot If there were reference to multiple jars, they are collapsed into one line with @dot on it. The general rule is ../<pluginNowJared>/<jarname>.jar ../<pluginNowJared>/<jarname2>.jar becomes ../<pluginNowJared>/@dot
Thanks. In N0318, the help webapp compiled. Following, I have simplified build.xml to 3 entries per jared plugin, for example: ../org.eclipse.help/@dot - when plug-in is jarred in a build ../org.eclipse.help - when jarred plug-in imported as binary in the workspace ../org.eclipse.help/bin - when source in the workspace. I have also coverted to using MANIFEST.MF.