NewAndNoteworthyNB9
(Difference between revisions)
(Created page with 'To be done.') |
|||
Line 1: | Line 1: | ||
- | + | =Java Platform Module System Support= | |
+ | NetBeans 9 supports JPMS (Jigsaw) to full extent. | ||
+ | Standard NetBeans Java SE Project (Ant) can be a single JDK9 module simply by adding module-info.java into default package. | ||
+ | Full Edit - Compile - Debug and Profile cycle is supported. | ||
+ | |||
+ | Java SE Project allows to develop and store JUnit tests: | ||
+ | # inside same module. In this case no changes to develop and execute tests are needed in ''main'' module-info.java | ||
+ | # in its own JUnit JDK9 module (own module-info.java). In this case ''main'' module-info.java exports the tested packages and ''tests'' module-info. java requires application module and JUnit... | ||
+ | |||
+ | New project called Java Modular project was added. This allows to develop several JDK9 modules in one NetBeans project (Ant based). |
Revision as of 19:18, 1 May 2017
Java Platform Module System Support
NetBeans 9 supports JPMS (Jigsaw) to full extent. Standard NetBeans Java SE Project (Ant) can be a single JDK9 module simply by adding module-info.java into default package. Full Edit - Compile - Debug and Profile cycle is supported.
Java SE Project allows to develop and store JUnit tests:
- inside same module. In this case no changes to develop and execute tests are needed in main module-info.java
- in its own JUnit JDK9 module (own module-info.java). In this case main module-info.java exports the tested packages and tests module-info. java requires application module and JUnit...
New project called Java Modular project was added. This allows to develop several JDK9 modules in one NetBeans project (Ant based).