[netbeans] branch master updated: Smaller improvements to the Add Connection wizard.

2022-04-28 Thread ebakke
This is an automated email from the ASF dual-hosted git repository.

ebakke pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/master by this push:
 new bab3a7357b Smaller improvements to the Add Connection wizard.
bab3a7357b is described below

commit bab3a7357b1f786ca517c6b5e4edf0b69e9d7712
Author: Eirik Bakke 
AuthorDate: Tue Jun 29 17:07:37 2021 -0400

Smaller improvements to the Add Connection wizard.

Details:
* Add support for Amazon Athena and Amazon Redshift.
* Ensure that the sample JDBC URL is properly shown when the user changes 
the URL type from the dropdown.
---
 .../db/explorer/dlg/NewConnectionPanel.java|  8 ++-
 .../org/netbeans/modules/db/util/Bundle.properties |  6 ++
 .../netbeans/modules/db/util/DriverListUtil.java   | 40 +++
 .../src/org/netbeans/modules/db/util/JdbcUrl.java  |  5 +-
 .../modules/db/util/DriverListUtilTest.java| 80 ++
 5 files changed, 136 insertions(+), 3 deletions(-)

diff --git 
a/ide/db/src/org/netbeans/modules/db/explorer/dlg/NewConnectionPanel.java 
b/ide/db/src/org/netbeans/modules/db/explorer/dlg/NewConnectionPanel.java
index eebcf1a464..15a383f355 100644
--- a/ide/db/src/org/netbeans/modules/db/explorer/dlg/NewConnectionPanel.java
+++ b/ide/db/src/org/netbeans/modules/db/explorer/dlg/NewConnectionPanel.java
@@ -590,7 +590,13 @@ public class NewConnectionPanel extends 
ConnectionDialog.FocusablePanel {
 setUpFields();
 }
 
-updateUrlFromFields();
+if (wd.getDatabaseUrl() == null && jdbcurl.getSampleUrl() != null) 
{
+// Show the appropriate sample URL if the user switches the 
JDBC URL type.
+urlField.setText(jdbcurl.getSampleUrl());
+updateFieldsFromUrl();
+} else {
+updateUrlFromFields();
+}
 fireChange();
 }
 }//GEN-LAST:event_templateComboBoxItemStateChanged
diff --git a/ide/db/src/org/netbeans/modules/db/util/Bundle.properties 
b/ide/db/src/org/netbeans/modules/db/util/Bundle.properties
index 98616ad25f..84bde29ab8 100644
--- a/ide/db/src/org/netbeans/modules/db/util/Bundle.properties
+++ b/ide/db/src/org/netbeans/modules/db/util/Bundle.properties
@@ -24,6 +24,10 @@ TYPE_ForSQLServer=Microsoft SQL Server
 TYPE_ForSybase=Sybase ASE
 TYPE_IDS=Informix Dynamic Server (IDS)
 TYPE_Cloudscape=Cloudscape Server
+TYPE_Standard=Standard
+TYPE_Endpoint=Endpoint
+TYPE_UserName=User Name
+TYPE_IAM=IAM
 
 ERR_InvalidURL=Invalid URL, should be of the form \n{0}
 
@@ -37,6 +41,8 @@ DRIVERNAME_OracleOCI=Oracle OCI
 DRIVERNAME_JTDS=jTDS
 DRIVERNAME_DB2JCC=IBM DB2 Universal Driver
 DRIVERNAME_MSSQL=Microsoft SQL Server
+DRIVERNAME_Athena=Amazon Athena
+DRIVERNAME_Redshift=Amazon Redshift
 
 # Map JDBC URL token identifiers to human-readable strings
 =Host
diff --git a/ide/db/src/org/netbeans/modules/db/util/DriverListUtil.java 
b/ide/db/src/org/netbeans/modules/db/util/DriverListUtil.java
index c6986d353a..2831cb5727 100644
--- a/ide/db/src/org/netbeans/modules/db/util/DriverListUtil.java
+++ b/ide/db/src/org/netbeans/modules/db/util/DriverListUtil.java
@@ -237,6 +237,46 @@ public class DriverListUtil {
 url.setSampleUser("root");
 url.setSamplePassword("");
 
+/* Use the class com.simba.athena.jdbc.Driver instead of
+com.simba.athena.jdbc42.Driver, per the documentation: "The connector 
supports the following
+fully-qualified class names (FQCNs) that are independent of the JDBC 
version:
+com.simba.athena.jdbc.Driver". */
+url = add(NbBundle.getMessage(DriverListUtil.class, 
"DRIVERNAME_Athena"),
+NbBundle.getMessage(DriverListUtil.class, "TYPE_Standard"),
+"com.simba.athena.jdbc.Driver",
+"jdbc:awsathena://[]", true); // NOI18N
+url.setSampleUser("");
+url.setSamplePassword("");
+
url.setSampleUrl("jdbc:awsathena://AwsRegion=us-west-1;S3OutputLocation=s3://working/dir");
+
+url = add(NbBundle.getMessage(DriverListUtil.class, 
"DRIVERNAME_Athena"),
+NbBundle.getMessage(DriverListUtil.class, "TYPE_Endpoint"),
+"com.simba.athena.jdbc.Driver",
+"jdbc:awsathena://[:][;]", true); // 
NOI18N
+url.setSampleUser("");
+url.setSamplePassword("");
+
url.setSampleUrl("jdbc:awsathena://athena.us-east-1.amazonaws.com:443;S3OutputLocation=s3://working/dir");
 // Make sure the default port gets set.
+
+/* Use the class com.amazon.redshift.jdbc.Driver instead of
+com.amazon.redshift.jdbc42.Driver, per the documentation: "The 
connector supports the
+following fully-qualified class names (FQCNs) that are independent of 
the JDBC version:
+com.amazon.redshift.jdbc.Driver". */
+url = 

[jira] [Commented] (NETBEANS-6497) class javax.swing.DebugGraphics cannot be cast to class java.awt.Graphics2D

2022-04-28 Thread Austin Stephens (Jira)


[ 
https://issues.apache.org/jira/browse/NETBEANS-6497?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17529662#comment-17529662
 ] 

Austin Stephens commented on NETBEANS-6497:
---

Of note, NETBEANS-4549 is technically related, but that user reported that is 
was fixed when it wasn't.

> class javax.swing.DebugGraphics cannot be cast to class java.awt.Graphics2D 
> 
>
> Key: NETBEANS-6497
> URL: https://issues.apache.org/jira/browse/NETBEANS-6497
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - Window System
>Affects Versions: 12.4, 12.5, 12.6
>Reporter: Austin Stephens
>Priority: Major
>
> A various number of Windowing components (such as ColorUtil) expect the input 
> graphics to be a `Graphics2D`, which is not the case when 
> `JComponent.setDebugGraphicsOptions​` was set with a non-zero value. This 
> makes it difficult to debug graphical issues.
> This, of course, wouldn't be an issue if 
> [https://bugs.openjdk.java.net/browse/JDK-4262543] was resolved instead of 
> left hanging, but we are not expecting them to fix that any time soon. The 
> code location given is not the only place where it is assumed.



--
This message was sent by Atlassian Jira
(v8.20.7#820007)

-
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



[netbeans] branch delivery updated: Prevent Type.Unknown to be cast to ClassType in VanilaCompileWorker

2022-04-28 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch delivery
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/delivery by this push:
 new 9e08ff4525 Prevent Type.Unknown to be cast to ClassType in 
VanilaCompileWorker
 new 4fe9e203af Merge pull request #4036 from 
lkishalmi/prevent-cce-in-vanilacompileworker
9e08ff4525 is described below

commit 9e08ff452522fa003c63e15252cb149c65c342c7
Author: Laszlo Kishalmi 
AuthorDate: Tue Apr 26 20:52:08 2022 -0700

Prevent Type.Unknown to be cast to ClassType in VanilaCompileWorker
---
 .../modules/java/source/indexing/VanillaCompileWorker.java | 10 ++
 1 file changed, 10 insertions(+)

diff --git 
a/java/java.source.base/src/org/netbeans/modules/java/source/indexing/VanillaCompileWorker.java
 
b/java/java.source.base/src/org/netbeans/modules/java/source/indexing/VanillaCompileWorker.java
index d35cf64e86..a019f79907 100644
--- 
a/java/java.source.base/src/org/netbeans/modules/java/source/indexing/VanillaCompileWorker.java
+++ 
b/java/java.source.base/src/org/netbeans/modules/java/source/indexing/VanillaCompileWorker.java
@@ -690,6 +690,11 @@ final class VanillaCompileWorker extends CompileWorker {
 //likely a duplicate of another class, don't touch:
 return null;
 }
+if (isOtherClass(csym)) {
+// Something went somewhere the csym.type is Type.Unknown,
+// do not go any further
+return null;
+}
 currentClass = csym;
 Type.ClassType ct = (Type.ClassType) csym.type;
 if (csym == syms.objectType.tsym) {
@@ -1049,9 +1054,14 @@ final class VanillaCompileWorker extends CompileWorker {
 }
 return isErroneousClass(((JCClassDecl) tree).sym);
 }
+
 private boolean isErroneousClass(Element el) {
 return el instanceof ClassSymbol && (((ClassSymbol) el).asType() == 
null || ((ClassSymbol) el).asType().getKind() == TypeKind.ERROR);
 }
 
+private boolean isOtherClass(Element el) {
+return el instanceof ClassSymbol && (((ClassSymbol) el).asType() == 
null || ((ClassSymbol) el).asType().getKind() == TypeKind.OTHER);
+}
+
 public static Function, String> DIAGNOSTIC_TO_TEXT = d -> 
d.getMessage(null);
 }


-
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



[jira] [Created] (NETBEANS-6497) class javax.swing.DebugGraphics cannot be cast to class java.awt.Graphics2D

2022-04-28 Thread Austin Stephens (Jira)
Austin Stephens created NETBEANS-6497:
-

 Summary: class javax.swing.DebugGraphics cannot be cast to class 
java.awt.Graphics2D 
 Key: NETBEANS-6497
 URL: https://issues.apache.org/jira/browse/NETBEANS-6497
 Project: NetBeans
  Issue Type: Bug
  Components: platform - Window System
Affects Versions: 12.6, 12.5, 12.4
Reporter: Austin Stephens


A various number of Windowing components (such as ColorUtil) expect the input 
graphics to be a `Graphics2D`, which is not the case when 
`JComponent.setDebugGraphicsOptions​` was set with a non-zero value. This makes 
it difficult to debug graphical issues.
This, of course, wouldn't be an issue if 
[https://bugs.openjdk.java.net/browse/JDK-4262543] was resolved instead of left 
hanging, but we are not expecting them to fix that any time soon. The code 
location given is not the only place where it is assumed.



--
This message was sent by Atlassian Jira
(v8.20.7#820007)

-
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



[netbeans] branch delivery updated: junixsocket is needed by com.jcraft.jsch needed by cpplite.debugger, needed by LSP.

2022-04-28 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch delivery
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/delivery by this push:
 new a9db2e118f junixsocket is needed by com.jcraft.jsch needed by 
cpplite.debugger, needed by LSP.
 new 9249f2f6bb Merge pull request #4046 from sdedic/lsp/jsch-startup-error
a9db2e118f is described below

commit a9db2e118f090a198b7c3acd1548a0d75b320b1f
Author: Svata Dedic 
AuthorDate: Thu Apr 28 15:30:00 2022 +0200

junixsocket is needed by com.jcraft.jsch needed by cpplite.debugger, needed 
by LSP.
---
 java/java.lsp.server/nbcode/nbproject/platform.properties | 1 -
 1 file changed, 1 deletion(-)

diff --git a/java/java.lsp.server/nbcode/nbproject/platform.properties 
b/java/java.lsp.server/nbcode/nbproject/platform.properties
index 608720b97b..d48788bbc4 100644
--- a/java/java.lsp.server/nbcode/nbproject/platform.properties
+++ b/java/java.lsp.server/nbcode/nbproject/platform.properties
@@ -30,7 +30,6 @@ cluster.path=\
 disabled.modules=\
 bcpg,\
 com.googlecode.javaewah.JavaEWAH,\
-libs.c.kohlschutter.junixsocket,\
 org.apache.commons.lang,\
 org.apache.ws.commons.util,\
 org.apache.xmlrpc,\


-
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



[netbeans] branch delivery updated (0266567dfa -> 43af764d23)

2022-04-28 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to branch delivery
in repository https://gitbox.apache.org/repos/asf/netbeans.git


from 0266567dfa Merge pull request #4042 from sdedic/lsp/problems-strip-html
 add 1c93c8235f notice stub year update to 2022
 add 43af764d23 Merge pull request #4048 from apache/noticestub2022

No new revisions were added by this update.

Summary of changes:
 nbbuild/notice-stub.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


-
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



[netbeans] branch delivery updated: Strip HTML tags in project problems.

2022-04-28 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch delivery
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/delivery by this push:
 new 26447d1c22 Strip HTML tags in project problems.
 new 0266567dfa Merge pull request #4042 from sdedic/lsp/problems-strip-html
26447d1c22 is described below

commit 26447d1c225df8341d642b878f6bcad912a7e194
Author: Svata Dedic 
AuthorDate: Thu Apr 28 08:05:28 2022 +0200

Strip HTML tags in project problems.
---
 .../netbeans/modules/java/lsp/server/Utils.java| 42 ++
 .../lsp/server/project/ProjectAlertPresenter.java  | 14 
 2 files changed, 50 insertions(+), 6 deletions(-)

diff --git 
a/java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/Utils.java 
b/java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/Utils.java
index a3561e6564..0b1afccd52 100644
--- a/java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/Utils.java
+++ b/java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/Utils.java
@@ -32,6 +32,7 @@ import java.net.URI;
 import java.util.Collections;
 import java.util.Iterator;
 import java.util.List;
+import java.util.Locale;
 import java.util.Set;
 import javax.lang.model.element.Element;
 import javax.lang.model.element.ElementKind;
@@ -337,4 +338,45 @@ public class Utils {
 return encoded.substring(2, encoded.length() - 2);
 }
 
+/**
+ * Simple conversion from HTML to plaintext. Removes all html tags incl. 
attributes,
+ * replaces BR, P and HR tags with newlines.
+ * @param s html text
+ * @return plaintext
+ */
+public static String html2plain(String s) {
+boolean inTag = false;
+int tagStart = -1;
+StringBuilder sb = new StringBuilder();
+for (int i = 0; i < s.length(); i++) {
+char ch = s.charAt(i);
+if (inTag) {
+boolean alpha = Character.isAlphabetic(ch);
+if (tagStart > 0 && !alpha) {
+String t = s.substring(tagStart, 
i).toLowerCase(Locale.ENGLISH);
+switch (t) {
+case "br": case "p": case "hr": // NOI1N
+sb.append("\n");
+break;
+}
+// prevent entering tagstart state again
+tagStart = -2;
+}
+if (ch == '>') { // NOI18N
+inTag = false;
+} else if (tagStart == -1 && alpha) {
+tagStart = i;
+}
+} else {
+if (ch == '<') { // NOI18N
+tagStart = -1;
+inTag = true;
+continue;
+}
+sb.append(ch);
+}
+}
+return sb.toString();
+}
+
 }
diff --git 
a/java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/project/ProjectAlertPresenter.java
 
b/java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/project/ProjectAlertPresenter.java
index 0482e7cd23..035d796b33 100644
--- 
a/java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/project/ProjectAlertPresenter.java
+++ 
b/java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/project/ProjectAlertPresenter.java
@@ -39,6 +39,7 @@ import javax.swing.event.ListDataListener;
 import org.netbeans.api.project.Project;
 import org.netbeans.api.project.ProjectInformation;
 import org.netbeans.api.project.ProjectUtils;
+import org.netbeans.modules.java.lsp.server.Utils;
 import org.netbeans.spi.project.ui.ProjectProblemsProvider;
 import org.openide.DialogDisplayer;
 import org.openide.NotifyDescriptor;
@@ -489,7 +490,7 @@ class ProjectAlertPresenter {
 // hack: the LSP protocol does not support title. Until fixed, or 
implemented through a custom message,
 // embed the title into description:
 String title = Bundle.ProjectProblem_Title(projectName, 
p.getDisplayName());
-NotifyDescriptor msg = new NotifyDescriptor(title + ": " + 
p.getDescription(), title, NotifyDescriptor.DEFAULT_OPTION, type, new 
Object[]{NotifyDescriptor.OK_OPTION}, null);
+NotifyDescriptor msg = new NotifyDescriptor(title + ": " + 
Utils.html2plain(p.getDescription()), title, NotifyDescriptor.DEFAULT_OPTION, 
type, new Object[]{NotifyDescriptor.OK_OPTION}, null);
 
 // Note: the number of 'fatal' dialogs displayed at the same time 
is limited by the RP throughput. Dialog API does not support 
CompletableFuture<> interface
 // so threads may dangle.
@@ -647,7 +648,7 @@ class ProjectAlertPresenter {
 }
 
 String title = Bundle.ProjectProblems_Fixable_Title(projectName, 
ref.problem.getDisplayName());
-String msg = ref.problem.getDescription();
+

[netbeans] branch noticestub2022 created (now 1c93c8235f)

2022-04-28 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to branch noticestub2022
in repository https://gitbox.apache.org/repos/asf/netbeans.git


  at 1c93c8235f notice stub year update to 2022

This branch includes the following new commits:

 new 1c93c8235f notice stub year update to 2022

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



-
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



[netbeans] 01/01: notice stub year update to 2022

2022-04-28 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch noticestub2022
in repository https://gitbox.apache.org/repos/asf/netbeans.git

commit 1c93c8235f5b3f22a9c77edd0447edbd32539aac
Author: Eric Barboni 
AuthorDate: Thu Apr 28 16:55:14 2022 +0200

notice stub year update to 2022
---
 nbbuild/notice-stub.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nbbuild/notice-stub.txt b/nbbuild/notice-stub.txt
index e0ce5df5ff..48bff50c34 100644
--- a/nbbuild/notice-stub.txt
+++ b/nbbuild/notice-stub.txt
@@ -1,5 +1,5 @@
 Apache NetBeans
-Copyright 2017-2021 The Apache Software Foundation
+Copyright 2017-2022 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).


-
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



[netbeans] branch delivery updated (74e1e5f91c -> 217f7df8f4)

2022-04-28 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a change to branch delivery
in repository https://gitbox.apache.org/repos/asf/netbeans.git


omit 74e1e5f91c Merge pull request #4007 from mbien/nbm-wizzard-version-fix
omit 28b6c66af7 Merge pull request #4004 from entlicher/GroovySmartStepping
omit 8bc0bf1a81 NbmWizardPanelVisual cleanup: lambdas, boxing, diamonds etc.
omit ddbc14a0d3 new nb module project wizzard improvements.
omit 74580fc2e7 Smart stepping implemented for Groovy. 
SmartSteppingFilterWrapper introduced as a step-specific filter.
 add 217f7df8f4 updated nb-javac18 plugin version and description (#4010)

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (74e1e5f91c)
\
 N -- N -- N   refs/heads/delivery (217f7df8f4)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .../maven/apisupport/NbmWizardPanelVisual.java | 232 +
 .../groovy/support/debug/GroovySmartStepping.java  | 105 --
 .../spi/debugger/jpda/SmartSteppingCallback.java   |  13 +-
 .../debugger/jpda/ui/SmartSteppingImpl.java|  12 +-
 .../ui/actions/JPDAMethodChooserFactoryUIImpl.java |   6 -
 .../modules/debugger/jpda/JPDADebuggerImpl.java|  11 +-
 .../modules/debugger/jpda/JPDAStepImpl.java|  36 +++-
 .../jpda/actions/SmartSteppingFilterImpl.java  |  47 -
 .../jpda/actions/SmartSteppingFilterWrapper.java   |  87 
 .../debugger/jpda/actions/StepActionProvider.java  |  49 ++---
 .../debugger/jpda/actions/StepIntoNextMethod.java  |  41 ++--
 java/libs.nbjavacapi/manifest.mf   |   2 +-
 .../netbeans/modules/nbjavac/api/Bundle.properties |   2 +-
 13 files changed, 262 insertions(+), 381 deletions(-)
 delete mode 100644 
groovy/groovy.support/src/org/netbeans/modules/groovy/support/debug/GroovySmartStepping.java
 delete mode 100644 
java/debugger.jpda/src/org/netbeans/modules/debugger/jpda/actions/SmartSteppingFilterWrapper.java


-
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



[netbeans] branch master updated: updated nb-javac18 plugin version and description (#4010)

2022-04-28 Thread skygo
This is an automated email from the ASF dual-hosted git repository.

skygo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/master by this push:
 new 7a559aa503 updated nb-javac18 plugin version and description (#4010)
7a559aa503 is described below

commit 7a559aa503b2bb1a88b183e5f202c404ccad8857
Author: Akhilesh Singh 
AuthorDate: Thu Apr 28 14:40:02 2022 +0530

updated nb-javac18 plugin version and description (#4010)
---
 java/libs.nbjavacapi/manifest.mf| 2 +-
 .../src/org/netbeans/modules/nbjavac/api/Bundle.properties  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/java/libs.nbjavacapi/manifest.mf b/java/libs.nbjavacapi/manifest.mf
index cb1f4edeb6..b43812f799 100644
--- a/java/libs.nbjavacapi/manifest.mf
+++ b/java/libs.nbjavacapi/manifest.mf
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
 AutoUpdate-Show-In-Client: true
 OpenIDE-Module: org.netbeans.libs.nbjavacapi
 OpenIDE-Module-Localizing-Bundle: 
org/netbeans/modules/nbjavac/api/Bundle.properties
-OpenIDE-Module-Specification-Version: 17.2
+OpenIDE-Module-Specification-Version: 18.0
 OpenIDE-Module-Hide-Classpath-Packages: com.sun.javadoc.**, com.sun.source.**, 
javax.annotation.processing.**, javax.lang.model.**, javax.tools.**, 
com.sun.tools.javac.** com.sun.tools.javac.**, com.sun.tools.javadoc.**, 
com.sun.tools.javap.**, com.sun.tools.classfile.**, com.sun.tools.doclint.**
 OpenIDE-Module-Fragment-Host: org.netbeans.libs.javacapi
 OpenIDE-Module-Provides: org.netbeans.libs.nbjavac
diff --git 
a/java/libs.nbjavacapi/src/org/netbeans/modules/nbjavac/api/Bundle.properties 
b/java/libs.nbjavacapi/src/org/netbeans/modules/nbjavac/api/Bundle.properties
index 536a0746f5..c5c441aaf1 100644
--- 
a/java/libs.nbjavacapi/src/org/netbeans/modules/nbjavac/api/Bundle.properties
+++ 
b/java/libs.nbjavacapi/src/org/netbeans/modules/nbjavac/api/Bundle.properties
@@ -18,6 +18,6 @@
 OpenIDE-Module-Display-Category=Java
 OpenIDE-Module-Long-Description=\
 This library provides a Java language parser for the IDE. \
-Supports JDK-17 features.
+Supports JDK-18 features.
 OpenIDE-Module-Name=The nb-javac Java editing support library
 OpenIDE-Module-Short-Description=The nb-javac Java editing support library


-
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