changeset 11701:e29743466d00

fixed regression in mx.py
author Doug Simon <doug.simon@oracle.com>
date Wed, 18 Sep 2013 11:20:43 +0200
parents 528ab536b403
children 6e8df0ca2879
files mxtool/mx.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mxtool/mx.py	Wed Sep 18 10:31:34 2013 +0200
+++ b/mxtool/mx.py	Wed Sep 18 11:20:43 2013 +0200
@@ -2558,7 +2558,7 @@
         if len(p.annotation_processors()) > 0:
             out = XMLDoc()
             out.open('factorypath')
-            out.element('factorypathentry', {'kind' : 'PLUGIN', 'id' : 'org.eclipset.ws.annotations.core', 'enabled' : 'true', 'runInBatchMode' : 'false'})
+            out.element('factorypathentry', {'kind' : 'PLUGIN', 'id' : 'org.eclipse.jst.ws.annotations.core', 'enabled' : 'true', 'runInBatchMode' : 'false'})
             for ap in p.annotation_processors():
                 for dep in dependency(ap).all_deps([], True):
                     if dep.isLibrary():