This is an automated email from the ASF dual-hosted git repository.

mbien pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/master by this push:
     new eb292e0  Hint wizzard module dependency fix.
     new 130431c  Merge pull request #3555 from mbien/hint-wizzard-deps
eb292e0 is described below

commit eb292e0396063a26621cf1498c4c2d26d28cb911
Author: Michael Bien <mbie...@gmail.com>
AuthorDate: Thu Feb 3 22:38:36 2022 +0100

    Hint wizzard module dependency fix.
    
    Wizzard created a pom with dependencies which did not exit.
---
 .../apisupport/project/ui/wizard/javahint/NewJavaHintIterator.java   | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git 
a/apisupport/apisupport.wizards/src/org/netbeans/modules/apisupport/project/ui/wizard/javahint/NewJavaHintIterator.java
 
b/apisupport/apisupport.wizards/src/org/netbeans/modules/apisupport/project/ui/wizard/javahint/NewJavaHintIterator.java
index aa3e5f9..59a4ce1 100644
--- 
a/apisupport/apisupport.wizards/src/org/netbeans/modules/apisupport/project/ui/wizard/javahint/NewJavaHintIterator.java
+++ 
b/apisupport/apisupport.wizards/src/org/netbeans/modules/apisupport/project/ui/wizard/javahint/NewJavaHintIterator.java
@@ -72,8 +72,8 @@ public class NewJavaHintIterator extends BasicWizardIterator {
         
cmf.add(cmf.addTestModuleDependency("org.netbeans.modules.java.hints.test", 
"java"));
         cmf.add(cmf.addTestModuleDependency("org.netbeans.libs.junit4", 
"extra"));
         cmf.add(cmf.addTestModuleDependency("org.netbeans.modules.nbjunit", 
"harness")); // NOI18N
-        cmf.add(cmf.addTestModuleDependency("org.netbeans.modules.parsing.nb", 
"ide")); // NOI18N
-        
cmf.add(cmf.addTestModuleDependency("org.netbeans.modules.projectapi.nb", 
"ide")); // NOI18N
+        
cmf.add(cmf.addTestModuleDependency("org.netbeans.modules.parsing.api", 
"ide")); // NOI18N
+        cmf.add(cmf.addTestModuleDependency("org.netbeans.modules.projectapi", 
"ide")); // NOI18N
         
         NbProjectProvider nbProjectProvider = 
getProjectProvider(model.getProject());
 
@@ -129,7 +129,6 @@ public class NewJavaHintIterator extends 
BasicWizardIterator {
             
cmf.add(cmf.addModuleToTargetPlatform("org.netbeans.modules.parsing.api", 
"ide")); // NOI18N
             
cmf.add(cmf.addModuleToTargetPlatform("org.netbeans.modules.parsing.indexing", 
"ide")); // NOI18N
             
cmf.add(cmf.addModuleToTargetPlatform("org.netbeans.modules.parsing.lucene", 
"ide")); // NOI18N
-            
cmf.add(cmf.addModuleToTargetPlatform("org.netbeans.modules.parsing.nb", 
"ide")); // NOI18N
             
cmf.add(cmf.addModuleToTargetPlatform("org.netbeans.modules.projectapi", 
"ide")); // NOI18N
             
cmf.add(cmf.addModuleToTargetPlatform("org.netbeans.modules.project.indexingbridge",
 "ide")); // NOI18N
             
cmf.add(cmf.addModuleToTargetPlatform("org.netbeans.modules.project.spi.intern",
 "ide")); // NOI18N

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to