开发者

IDE features in NetBeans platform application

开发者 https://www.devze.com 2023-03-07 23:46 出处:网络
I am developing application based on the NetBeans platform. I use Maven to build it and I need to provide IDE features in my app (text editing, syntax highliting for XML files and so on).

I am developing application based on the NetBeans platform. I use Maven to build it and I need to provide IDE features in my app (text editing, syntax highliting for XML files and so on).

Which libraries do I need to declare as dependencies to be able to provide the editor support? And what about XML syntax highliting (or full XML files support)? I am kinda lost in those dozens of JARs. Is ther开发者_StackOverflow社区e any way to include whole NB cluster? (To make sure everyone gets it, once again, I use Maven.)

Thanks for any help.


Have a look at the NetBeans API index in the content section there is a short description about what each API provides. At a guess I think you're wanting to use the Editor Module and maybe the XML API

I think that if you include the following dependency you will get the entire NetBeans (This is not something that I've tried) IDE as a dependecy

    <dependency>
        <groupId>org.netbeans.cluster</groupId>
        <artifactId>ide</artifactId>
        <version>RELEASE70</version>
        <type>pom</type>
    </dependency>
0

精彩评论

暂无评论...
验证码 换一张
取 消