# Apache-NetBeans **Repository Path**: weizai118/Apache-NetBeans ## Basic Information - **Project Name**: Apache-NetBeans - **Description**: NetBeans 是开源软件开发集成环境,是一个开放框架,可扩展的开发平台,可以用于 Java,C/C++,PHP 等语言的开发,本身是一个开发平台,可以通过扩展插件来扩展功能 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 12 - **Created**: 2018-07-30 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Apache NetBeans Apache NetBeans is an open source development environment, tooling platform, and application framework. ### Build status * TravisCI: * [![Build Status](https://travis-ci.org/apache/incubator-netbeans.svg?branch=master)](https://travis-ci.org/apache/incubator-netbeans) * Apache Jenkins: * Linux: [![Build Status](https://builds.apache.org/job/incubator-netbeans-linux/badge/icon)](https://builds.apache.org/job/incubator-netbeans-linux/) * Windows: [![Build Status](https://builds.apache.org/job/incubator-netbeans-windows/badge/icon)](https://builds.apache.org/job/incubator-netbeans-windows/) ### Requirements * Git * Ant 1.9.9 or above * Oracle JDK 8 or OpenJDK 8 (to build NetBeans) * Oracle JDK 9 or OpenJDK 9 (to run NetBeans) **Note:** NetBeans also runs with JDK 8, although then it will not include tools for the JDK 9 Shell. **Note:** NetBeans license violation checks are managed via the [rat-exclusions.txt](https://github.com/apache/incubator-netbeans/blob/master/nbbuild/rat-exclusions.txt) file. ### Building NetBeans Build the full project: ``` $ ant ``` Build the NetBeans Platform: ``` $ ant -Dcluster.config=platform ``` ### Running NetBeans Run the build: ``` $ ant tryme ``` **Note:** Look in nbbuild/netbeans for the NetBeans installation created by the build process. ### Get In Touch [Subscribe](mailto:users-subscribe@netbeans.incubator.apache.org) or [mail](mailto:users@netbeans.incubator.apache.org) the [users@netbeans.incubator.apache.org](mailto:users@netbeans.incubator.apache.org) list - Ask questions, find answers, and also help other users. [Subscribe](mailto:dev-subscribe@netbeans.incubator.apache.org) or [mail](mailto:dev@netbeans.incubator.apache.org) the [dev@netbeans.incubator.apache.org](mailto:dev@netbeans.incubator.apache.org) list - Join developement discussions, propose new ideas and connect with contributors. ### Download Developer builds can be downloaded from https://builds.apache.org/job/incubator-netbeans-release/ ### Reporting Bugs Bugs should be reported to https://issues.apache.org/jira/projects/NETBEANS/issues/ ### Full History The origins of the code in this repository are older than its Apache existence. As such significant part of the history (before the code was donated to Apache) is kept in an independent repository. To fully understand the code you may want to merge the modern and ancient versions together: ```bash $ git clone https://github.com/apache/incubator-netbeans.git $ cd incubator-netbeans $ git log uihandler/arch.xml ``` This gives you just few log entries including the initial checkin and change of the file headers to Apache. But then the magic comes: ```bash $ git remote add emilian https://github.com/emilianbold/netbeans-releases.git $ git fetch emilian # this takes a while, the history is huge! $ git replace 6daa72c98 32042637 ``` When you search the log, or use the blame tool, the full history is available: ```bash $ git log uihandler/arch.xml $ git blame uihandler/arch.xml ``` Many thanks to Emilian Bold who converted the ancient history to his [Git repository](https://github.com/emilianbold/netbeans-releases) and made the magic possible!