This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/netbeans-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 68c3816  Automated site publishing by Jenkins build 1347
68c3816 is described below

commit 68c38163dd84385fd8ba6e30cb75e7352872efc5
Author: jenkins <bui...@apache.org>
AuthorDate: Sun Jun 7 08:33:43 2020 +0000

    Automated site publishing by Jenkins build 1347
---
 content/download/nb120/index.html | 138 +++++++++++++++++++++++++++++++++++---
 1 file changed, 129 insertions(+), 9 deletions(-)

diff --git a/content/download/nb120/index.html 
b/content/download/nb120/index.html
index 795e4e2..eec00b9 100644
--- a/content/download/nb120/index.html
+++ b/content/download/nb120/index.html
@@ -97,7 +97,7 @@
 </li>
 </ul>
 </li>
-<li><a href="#_php">PHP</a></li>
+<li><a href="#_php_javascript_and_html">PHP, JavaScript, and HTML</a></li>
 <li><a href="#_c_c">C/C++</a></li>
 <li><a href="#_appearance">Appearance</a>
 <ul class="sectlevel2">
@@ -120,7 +120,7 @@
 <i class="fa icon-tip" title="Tip"></i>
 </td>
 <td class="content">
-The LTS release of the Apache NetBeans 12 cycle is Apache NetBeans 12.0, which 
consolidates the feature releases 11.1, 11.2, and 11.3. Feature releases have 
not been tested as heavily as the LTS release, which passes through the <a 
href="https://cwiki.apache.org/confluence/display/NETBEANS/Results+from+Apache+NetBeans+IDE+12.0+Community+Acceptance+survey";>NetCAT
 Community Acceptance process</a> and is for these reasons the annual major 
release. For details, see the <a href="https://cwiki [...]
+The LTS release of the Apache NetBeans 12 cycle is Apache NetBeans 12.0, which 
consolidates the feature releases <a 
href="http://netbeans.apache.org/download/nb111/index.html";>11.1</a>, <a 
href="http://netbeans.apache.org/download/nb112/index.html";>11.2</a>, and <a 
href="http://netbeans.apache.org/download/nb113/index.html";>11.3</a>. Feature 
releases have not been tested as heavily as the LTS release, which passes 
through the <a href="https://cwiki.apache.org/confluence/display/NETBEANS/ [...]
 </td>
 </tr>
 </table>
@@ -137,7 +137,7 @@ The LTS release of the Apache NetBeans 12 cycle is Apache 
NetBeans 12.0, which c
 <h2 id="_overview">Overview</h2>
 <div class="sectionbody">
 <div class="paragraph">
-<p>Apache NetBeans 12.0 adds support for the latest Java language features, 
integrates new code donations from Oracle for Java Web development, enhances 
its best of breed Apache Maven tooling, brings multiple enhancements for usage 
of Gradle, introduces new out of the box templates for JavaFX, upgrades and 
extends its PHP editor, provides new dark look and feel options, and includes a 
wide range of fixes.</p>
+<p>Apache NetBeans 12.0 adds support for the latest Java language features, 
integrates new code donations from Oracle for Java Web development, enhances 
its best of breed Apache Maven tooling, brings multiple enhancements for users 
of Gradle, introduces new out of the box templates for JavaFX, upgrades and 
extends its PHP editor, provides new dark look and feel options, and includes a 
wide range of fixes.</p>
 </div>
 <div class="paragraph">
 <p>All features provided by Apache NetBeans are supported out of the box, 
without additional plugins needing to be installed, and all for free. Apache 
NetBeans 12.0 is the first LTS release of NetBeans as a top level Apache 
project.</p>
@@ -331,8 +331,17 @@ run.jvmArgs(['--enable-preview'])</code></pre>
 </div>
 <div class="sect2">
 <h3 id="_java_ee">Java EE</h3>
-<div class="paragraph">
-<p>Currently, Apache NetBeans supports Java EE, though not yet Jakarta EE. The 
Jakarta EE APIs are identical to Java EE 8, though there are new JARs that are 
now packaged under the Eclipse Foundation and all APIs have been slightly 
renamed.</p>
+<div class="admonitionblock tip">
+<table>
+<tr>
+<td class="icon">
+<i class="fa icon-tip" title="Tip"></i>
+</td>
+<td class="content">
+Currently, Apache NetBeans supports Java EE, though not yet Jakarta EE. The 
Jakarta EE APIs are identical to Java EE 8, though there are new JARs that are 
now packaged under the Eclipse Foundation and all APIs have been slightly 
renamed.
+</td>
+</tr>
+</table>
 </div>
 <div class="sect3">
 <h4 id="_support_for_java_ee_specifications">Support for Java EE 
Specifications</h4>
@@ -385,20 +394,108 @@ run.jvmArgs(['--enable-preview'])</code></pre>
 <h3 id="_java_build_systems">Java Build Systems</h3>
 <div class="sect3">
 <h4 id="_maven">Maven</h4>
-
+<div class="ulist">
+<ul>
+<li>
+<p>Java compiler args, e.g., "--enable-preview", passed to Java editor from 
Maven: <a 
href="https://github.com/apache/netbeans/pull/1173";>https://github.com/apache/netbeans/pull/1173</a></p>
+</li>
+</ul>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre class="prettyprint highlight"><code class="language-xml" 
data-lang="xml">&lt;build&gt;
+   &lt;plugins&gt;
+      &lt;plugin&gt;
+          &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
+          &lt;version&gt;3.8.0&lt;/version&gt;
+          &lt;configuration&gt;
+              &lt;compilerArgs&gt;
+                    &lt;arg&gt;--enable-preview&lt;/arg&gt;
+              &lt;/compilerArgs&gt;
+         &lt;/configuration&gt;
+     &lt;/plugin&gt;
+  &lt;/plugins&gt;
+&lt;/build&gt;</code></pre>
+</div>
+</div>
+<div class="ulist">
+<ul>
+<li>
+<p>Fix for JaCoCo Maven integration, in 11.1: <a 
href="https://github.com/apache/netbeans/pull/1286";>https://github.com/apache/netbeans/pull/1286</a></p>
+</li>
+</ul>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre class="prettyprint highlight"><code class="language-xml" 
data-lang="xml">&lt;plugin&gt;
+    &lt;groupId&gt;org.jacoco&lt;/groupId&gt;
+    &lt;artifactId&gt;jacoco-maven-plugin&lt;/artifactId&gt;
+    &lt;version&gt;0.8.3&lt;/version&gt;
+    &lt;executions&gt;
+        &lt;execution&gt;
+            &lt;goals&gt;
+                &lt;goal&gt;prepare-agent&lt;/goal&gt;
+            &lt;/goals&gt;
+        &lt;/execution&gt;
+        &lt;execution&gt;
+            &lt;id&gt;report&lt;/id&gt;
+            &lt;phase&gt;prepare-package&lt;/phase&gt;
+            &lt;goals&gt;
+                &lt;goal&gt;report&lt;/goal&gt;
+            &lt;/goals&gt;
+            &lt;configuration&gt;
+               
&lt;outputDirectory&gt;${project.reporting.outputDirectory}/jacoco_test&lt;/outputDirectory&gt;
+            &lt;/configuration&gt;
+        &lt;/execution&gt;
+    &lt;/executions&gt;
+&lt;/plugin&gt;</code></pre>
+</div>
+</div>
+<div class="ulist">
+<ul>
+<li>
+<p>Prevent Maven libraries from being excluded: <a 
href="https://github.com/apache/netbeans/pull/1271";>https://github.com/apache/netbeans/pull/1271</a></p>
+</li>
+</ul>
+</div>
 </div>
 <div class="sect3">
 <h4 id="_gradle">Gradle</h4>
-
+<div class="ulist">
+<ul>
+<li>
+<p>Gradle Java EE support.</p>
+</li>
+<li>
+<p>Upgraded Gradle Tooling API to 6.0.</p>
+</li>
+<li>
+<p>Added support for Custom Gradle Home.</p>
+</li>
+<li>
+<p>Added support for Gradle Composite Projects.</p>
+</li>
+<li>
+<p>Recognize Kotlin-based Gradle projects.</p>
+</li>
+<li>
+<p>Gradle project can be reloaded forcibly.</p>
+</li>
+</ul>
+</div>
 </div>
 </div>
 </div>
 </div>
 <div class="sect1">
-<h2 id="_php">PHP</h2>
+<h2 id="_php_javascript_and_html">PHP, JavaScript, and HTML</h2>
 <div class="sectionbody">
-<div class="paragraph">
+<div class="ulist">
+<ul>
+<li>
 <p>The highlights of enhancements in the PHP area are focused on support for 
PHP 7.4.</p>
+</li>
+</ul>
 </div>
 <div class="openblock feature">
 <div class="content">
@@ -412,6 +509,29 @@ run.jvmArgs(['--enable-preview'])</code></pre>
 <div class="paragraph">
 <p>Further details on new support for PHP 7.4 features are provided <a 
href="https://cwiki.apache.org/confluence/display/NETBEANS/11.2+Feature%3A+PHP";>here</a>.</p>
 </div>
+<div class="ulist">
+<ul>
+<li>
+<p>TypeScript editor, introduced in 11.3.</p>
+</li>
+</ul>
+</div>
+<div class="openblock feature">
+<div class="content">
+<div class="imageblock left">
+<div class="content">
+<a class="image" href="typescript-11.3.png"><img src="typescript-11.3.png" 
alt="typescript 11.3"></a>
+</div>
+</div>
+</div>
+</div>
+<div class="ulist">
+<ul>
+<li>
+<p>Fix for Chrome connector connection with Apache NetBeans, in 11.3.</p>
+</li>
+</ul>
+</div>
 </div>
 </div>
 <div class="sect1">


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

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

Reply via email to