Skip to content

akuhtz/netbeans

This branch is 8218 commits behind apache/netbeans:master.

Folders and files

NameName
Last commit message
Last commit date
Jan 31, 2018
Jul 8, 2019
May 14, 2019
Jul 12, 2019
Mar 13, 2019
May 30, 2019
Mar 10, 2019
Jul 12, 2019
Jun 19, 2019
Jul 11, 2019
Jul 12, 2019
Jun 14, 2019
Jun 25, 2019
Jul 12, 2019
May 10, 2019
Jun 18, 2019
Jul 3, 2019
Jun 15, 2019
Jul 3, 2019
Apr 6, 2019
Jan 5, 2018
May 14, 2019
Jul 12, 2019
Jan 14, 2018
Mar 31, 2019
May 9, 2019
Sep 21, 2017

Repository files navigation

Apache NetBeans

Apache NetBeans is an open source development environment, tooling platform, and application framework.

Build status

  • TravisCI:
    • Build Status
  • Apache Jenkins:
    • Linux: Build Status
    • Windows: Build Status

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)
  • MinGW (optional), to build Windows Launchers

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 file.

Building NetBeans

Build with the default config (See the cluster.config property.)

$ ant

Build the basic project (mainly, JavaSE features):

$ ant -Dcluster.config=basic

Build the full project (including Groovy, PHP, JavaEE/JakartaEE, and JavaScript features):

$ ant -Dcluster.config=full

Build the NetBeans Platform:

$ ant -Dcluster.config=platform

Note: You can also use php, enterprise, etc. See the cluster.properties file.

Building Windows Launchers

Windows launchers can be build using MinGW both on Windows and Linux.

Note: In Windows MSYS must be installed.

As of NETBEANS-1145, the Windows Launchers can be built adding do.build.windows.launchers=true property to the build process.

$ ant -Ddo.build.windows.launchers=true
Software Requirement to Build Windows Launchers on Ubuntu (16.04+):
sudo apt install make mingw-w64

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 or mail the [email protected] list - Ask questions, find answers, and also help other users.

Subscribe or mail the [email protected] list - Join development discussions, propose new ideas and connect with contributors.

Download

Developer builds can be downloaded: https://builds.apache.org/job/netbeans-linux.

Convenience binary of released source artifacts: https://netbeans.apache.org/download/index.html.

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:

$ git clone https://github.com/apache/netbeans.git
$ cd netbeans
$ git log platform/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:

$ 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 # the 1st donation
$ git replace 6035076ee 32042637 # the 2nd donation

When you search the log, or use the blame tool, the full history is available:

$ git log platform/uihandler/arch.xml
$ git blame platform/uihandler/arch.xml

Many thanks to Emilian Bold who converted the ancient history to his Git repository and made the magic possible!

Packages

No packages published

Languages

  • Java 87.9%
  • Standard ML 7.9%
  • HTML 2.0%
  • PHP 0.8%
  • XSLT 0.4%
  • JavaScript 0.4%
  • Other 0.6%