Problem with update site categories in Eclipse 3.4 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T12:06:13Z http://stackoverflow.com/feeds/question/144671 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/144671/problem-with-update-site-categories-in-eclipse-3-4 3 Problem with update site categories in Eclipse 3.4 Uri 2008-09-27T22:55:59Z 2009-08-01T08:45:15Z <p>I am using Eclipse 3.4 (ganymede official, not the service pack).</p> <p>I have an update site that organizes features into categories; everything looks great in the editor and in the XML.</p> <p>Once the site is online, accessing it in the usual manner tells me that all the features are "uncategorized". I've tried from multiple computers running 3.4 and the same problem persists.</p> <p>What is curious is that I used Eclipse 3.3, and it saw the categories well, though of course it wasn't able to instlal the plugins which are made from 3.4.</p> <p>Am I doing something wrong or is this a known problem?</p> http://stackoverflow.com/questions/144671/problem-with-update-site-categories-in-eclipse-3-4/144711#144711 1 Answer by Rayne for Problem with update site categories in Eclipse 3.4 Rayne 2008-09-27T23:18:06Z 2009-04-20T16:17:28Z <p>I've always had trouble with Eclipse's updating; I don't know what it is, but it just always seems buggy for me. You aren't doing anything wrong. In my eyes it's a known problem.</p> http://stackoverflow.com/questions/144671/problem-with-update-site-categories-in-eclipse-3-4/146532#146532 3 Answer by VonC for Problem with update site categories in Eclipse 3.4 VonC 2008-09-28T19:22:15Z 2008-09-28T19:22:15Z <p>It appears to be a known problem, due to the new <a href="http://wiki.eclipse.org/Equinox_p2" rel="nofollow">'p2' provisioning system</a>.</p> <p>See <a href="http://dev.eclipse.org/newslists/news.eclipse.technology.equinox/msg04954.html" rel="nofollow">this discussion</a>, and <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=227675" rel="nofollow">this bug</a>. What it seems to say is... "stay put until 3.5M3, and then try it again".</p> http://stackoverflow.com/questions/144671/problem-with-update-site-categories-in-eclipse-3-4/769131#769131 0 Answer by zvikico for Problem with update site categories in Eclipse 3.4 zvikico 2009-04-20T16:49:18Z 2009-04-20T16:49:18Z <p>This solution works for me:</p> <ol> <li>Use the PDE update site project to create the site.xml and build your plugins. Make sure you set the category here. </li> <li>Delete the artifacts.xml and content.xml created by the update site build.</li> <li>Use the <a href="http://wiki.eclipse.org/Equinox%5Fp2%5FMetadata%5FGenerator" rel="nofollow">P2 Metadata Generator</a> to generate your artifacts and content files. I use the compress option so I'm getting jars. </li> <li>The update site should include: the site.xml, content &amp; artifacts jars, features and plugins folders. </li> </ol> <p>If you follow this procedure, it will work just fine in Eclipse 3.3 and 3.4. Naturally, you should automate this process with Ant.</p> <p>Important notes:</p> <ul> <li>I never got the metadata generator Ant task to work, so I invoke it in its' Java form (the second example in the link above).</li> <li>Make sure you clear the artifacts and content xmls before the generation</li> <li>Inputs: site.xml and built plugins/features folders </li> <li>Specify the metadataRepositoryName which is the update site title (shown to the user in some cases)</li> </ul> <p>I'll do my best to blog about it soon... Let me know if you have any questions.</p> http://stackoverflow.com/questions/144671/problem-with-update-site-categories-in-eclipse-3-4/1216192#1216192 0 Answer by mharbach for Problem with update site categories in Eclipse 3.4 mharbach 2009-08-01T08:45:15Z 2009-08-01T08:45:15Z <p>What seems to work for me is to put the tag, defining the category in the site.xml, before the tag including the other category tag. If you add the category with eclipse's editor after adding the feature, it'll have messed that up...</p>