Maven artifacts for simple XML Editor

Hong-Phuc Bui <[email protected]> Sat, 11 Jul 2026 11:15:16 +0200
Newsgroups gmane.comp.java.ide.netbeans.user
Message-ID <[email protected]>
Hi there,

which maven artifacts should I include in <dependencies> of my Netbeans Application
To get a simple XML Editor, which can xml/html syntax highlight and tags auto complete?

I have tried:

<!-- Dummy HTMLEditor- -->
         <dependency>
             <groupId>org.netbeans.modules</groupId>
             <artifactId>org-netbeans-modules-html</artifactId>
              <version>${netbeans.version}</version>
         </dependency>
         <dependency>
             <groupId>org.netbeans.modules</groupId>
             <artifactId>org-netbeans-modules-html-editor</artifactId>
              <version>${netbeans.version}</version>
         </dependency>
         <dependency>
             <groupId>org.netbeans.api</groupId>
             <artifactId>org-netbeans-modules-html-lexer</artifactId>
             <version>RELEASE300</version>
         </dependency>
         <dependency>
             <groupId>org.netbeans.modules</groupId>
             <artifactId>org-netbeans-modules-html-parser</artifactId>
             <version>${netbeans.version}</version>
         </dependency>
         <dependency>
             <groupId>org.netbeans.modules</groupId>
             <artifactId>org-netbeans-modules-html-validation</artifactId>
             <version>${netbeans.version}</version>
         </dependency>
         <!-- Lexer -->
         <dependency>
             <groupId>org.netbeans.modules</groupId>
             <artifactId>org-netbeans-modules-lexer-nbbridge</artifactId>
             <version>${netbeans.version}</version>
         </dependency>
         <dependency>
             <groupId>org.netbeans.api</groupId>
             <artifactId>org-netbeans-modules-parsing-api</artifactId>
             <version>${netbeans.version}</version>
         </dependency>
         <dependency>
             <groupId>org.netbeans.modules</groupId>
             <artifactId>org-netbeans-modules-parsing-nb</artifactId>
             <version>${netbeans.version}</version>
         </dependency>
         
         <dependency>
             <groupId>org.netbeans.modules</groupId>
             <artifactId>org-netbeans-libs-freemarker</artifactId>
             <version>${netbeans.version}</version>
         </dependency>


but my app shows xml/html file as a normal plain text file.

Thanks in advance for hints :)

Felix Fuchs

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

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