[jira] [Assigned] (NETBEANS-6321) certificate expired for maven plugin development

2021-12-27 Thread Ruslan Lopez Carro (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-6321?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ruslan Lopez Carro reassigned NETBEANS-6321:


Assignee: Jaroslav Tulach

> certificate expired for maven plugin development
> 
>
> Key: NETBEANS-6321
> URL: https://issues.apache.org/jira/browse/NETBEANS-6321
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Ruslan Lopez Carro
>Assignee: Jaroslav Tulach
>Priority: Major
>
> {code:java}
> [ERROR] Failed to execute goal on project DebuggerUtils: Could not resolve 
> dependencies for project 
> de.markiewb.netbeans.plugins:DebuggerUtils:nbm:1.0.0: Failed to collect 
> dependencies at 
> org.netbeans.api:org-netbeans-api-annotations-common:jar:RELEASE81: Failed to 
> read artifact descriptor for 
> org.netbeans.api:org-netbeans-api-annotations-common:jar:RELEASE81: Could not 
> transfer artifact 
> org.netbeans.api:org-netbeans-api-annotations-common:pom:RELEASE81 from/to 
> netbeans (https://netbeans.apidesign.org/maven2/): Transfer failed for 
> https://netbeans.apidesign.org/maven2/org/netbeans/api/org-netbeans-api-annotations-common/RELEASE81/org-netbeans-api-annotations-common-RELEASE81.pom:
>  PKIX path validation failed: java.security.cert.CertPathValidatorException: 
> validity check failed: NotAfter: Wed Sep 29 14:21:40 CDT 2021 -> [Help 1]  
> {code}
> Probably it's a good time to create https://netbeans.apache.org/maven2/



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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] [Resolved] (NETBEANS-5901) NPE on Ctrl+Click on Java-class of library with attached source

2021-12-27 Thread Jira


 [ 
https://issues.apache.org/jira/browse/NETBEANS-5901?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Matthias Bläsing resolved NETBEANS-5901.

Fix Version/s: 13
   Resolution: Fixed

Fix was merged to master

> NPE on Ctrl+Click on Java-class of library with attached source
> ---
>
> Key: NETBEANS-5901
> URL: https://issues.apache.org/jira/browse/NETBEANS-5901
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Navigation, editor - Painting  Printing
>Affects Versions: 12.4, 12.5
>Reporter: Mario Bruckschwaiger
>Priority: Major
>  Labels: pull-request-available
> Fix For: 13
>
> Attachments: nb-bug-IDE-Log.txt, nb-bug-UI-Log.txt
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> When trying to open the code of a class from a Java-library where the Java 
> source is attached with Ctrl+click on the class-name, no window opens and the 
> exception occurs (see attachments).
> When the name is clicked a second time, an editor window opens, but it is 
> empty. Interestingly, the "Navigator"-view has the structure of the class. 
> When switching the Editor-window to "History" and back to "Source", the 
> source is present. Also splitting the view horizontally or vertically shows 
> the source code in both windows immediately. After clearing the split, the 
> source code stays visible.
> As long as no source was attached, the source-window opened immediately with 
> the byte-code as method-bodies.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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: [NETBEANS-5901] Handling of FileObjects not backed by j.i.File when sorting by full path is requested.

2021-12-27 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

matthiasblaesing 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 923c632  [NETBEANS-5901] Handling of FileObjects not backed by 
j.i.File when sorting by full path is requested.
 new dcc34cd  Merge pull request #3134 from jlahoda/NETBEANS-5901
923c632 is described below

commit 923c6327932632ee50959b082eac828c97d679db
Author: Jan Lahoda 
AuthorDate: Fri Aug 27 18:06:14 2021 +0200

[NETBEANS-5901] Handling of FileObjects not backed by j.i.File when sorting 
by full path is requested.
---
 .../netbeans/core/windows/model/DefaultModeModel.java | 19 ++-
 1 file changed, 18 insertions(+), 1 deletion(-)

diff --git 
a/platform/core.windows/src/org/netbeans/core/windows/model/DefaultModeModel.java
 
b/platform/core.windows/src/org/netbeans/core/windows/model/DefaultModeModel.java
index 9b9bda1..124b876 100644
--- 
a/platform/core.windows/src/org/netbeans/core/windows/model/DefaultModeModel.java
+++ 
b/platform/core.windows/src/org/netbeans/core/windows/model/DefaultModeModel.java
@@ -22,6 +22,7 @@ package org.netbeans.core.windows.model;
 
 
 import java.awt.*;
+import java.io.File;
 import java.util.ArrayList;
 import java.util.Collection;
 import java.util.Collections;
@@ -232,7 +233,23 @@ final class DefaultModeModel implements ModeModel {
 }
 
 private int compareFullFilePath(FileObject f1, FileObject f2) {
-return FileUtil.toFile(f1).compareTo(FileUtil.toFile(f2));
+return toFullFilePath(f1).compareToIgnoreCase(toFullFilePath(f2));
+}
+
+private String toFullFilePath(FileObject fo) {
+File f = FileUtil.toFile(fo);
+
+if (f != null) {
+return f.getAbsolutePath();
+}
+
+FileObject rootFO = FileUtil.getArchiveFile(fo);
+
+if (rootFO != null) {
+return toFullFilePath(rootFO) + "/" + fo.getPath();
+}
+
+return fo.toURL().getPath();
 }
 
 private int compareFileName(FileObject f1, FileObject f2) {

-
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] [Resolved] (NETBEANS-3691) Subversion context menu will not appear for folders that have a directory with dashes in the name

2021-12-27 Thread Laszlo Kishalmi (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-3691?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Laszlo Kishalmi resolved NETBEANS-3691.
---
Resolution: Abandoned

> Subversion context menu will not appear for folders that have a directory 
> with dashes in the name
> -
>
> Key: NETBEANS-3691
> URL: https://issues.apache.org/jira/browse/NETBEANS-3691
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.2
>Reporter: Daniel Ellis
>Priority: Minor
>
> I'm using SlikSVN 1.9.7. I added a folder which is a svn working copy to my 
> favorites. The folder has a dashes in the name  of one of it's directories 
> (specifically 
> C:\NetbeansUserBase-11.2\config\org-netbeans-api-project-libraries\Libraries).
>  In previous versions of Netbeans, I could right click on the favorites 
> folder and see a Subversion option in my context menu so I could update, 
> commit, etc. In Netbeans 11.2, I do not get a Subversion context menu. Other 
> folders added to my favorites that do not have dashes in any directory names 
> and are working copies do have the Subversion context menu, so it appears 
> that the dashes in the name are what are causing the issue. 
> This behavior occurs on Windows 7 and Windows 10.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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] [Resolved] (NETBEANS-2157) NumberFormatException for SlikSvn as Subversion CLI client.

2021-12-27 Thread Laszlo Kishalmi (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2157?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Laszlo Kishalmi resolved NETBEANS-2157.
---
Resolution: Fixed

Shall be fixed by now.

> NumberFormatException for SlikSvn as Subversion CLI client.
> ---
>
> Key: NETBEANS-2157
> URL: https://issues.apache.org/jira/browse/NETBEANS-2157
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 10.0
>Reporter: Steven Douglas Cochran
>Priority: Minor
> Attachments: IDE_Log.txt, UI_Log.txt
>
>
> Upgrading from 8.2 to 10.0 (and porting old settings)
> On initial loading and subsequent opening of Tools>Team>Versioning>Subversion 
> an NFE is thrown on parsing "7-SlikSvn".  The client worked when the imported 
> subversion was present, but would not reopen the window or work with SlikSvn 
> subsequently.
> Switching to the JavaHL client worked OK and did not generate an exception.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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] [Resolved] (NETBEANS-2738) Subversion CLI provider Cannot detect SilkSVN

2021-12-27 Thread Laszlo Kishalmi (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-2738?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Laszlo Kishalmi resolved NETBEANS-2738.
---
Resolution: Fixed

Shall be fixed since that.

> Subversion CLI provider Cannot detect SilkSVN
> -
>
> Key: NETBEANS-2738
> URL: https://issues.apache.org/jira/browse/NETBEANS-2738
> Project: NetBeans
>  Issue Type: Bug
>  Components: versioncontrol - Subversion
>Affects Versions: 11.0
> Environment: Windows 7 Home SP1
>Reporter: Peter Toye
>Priority: Major
> Attachments: IDELog.txt, uilog.txt
>
>
> Just came back to NB for the first time after some years. I already had an 
> 8.0.2 version. Downloaded and unpacked 11.0 (64-bit). It asked me if I wanted 
> to import settings from old version - replied "yes". Then it found some 
> out-of-date packages & plugins which I also upgraded.
> Then it came up with a notification saying that a bug had been found. I'm 
> attaching the UI log and IDE log files from the "view data" button.
> HTH



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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: Fix html.angular, js2.editor, js2.nodejs and js2.requirejs tests

2021-12-27 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

matthiasblaesing 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 94b143d  Fix html.angular, js2.editor, js2.nodejs and js2.requirejs 
tests
 new 3f5ad07  Merge pull request #3389 from matthiasblaesing/js_test
94b143d is described below

commit 94b143d8bc06e689bf5f0253f76017ac3dc316ec
Author: Matthias Bläsing 
AuthorDate: Mon Dec 27 15:35:53 2021 +0100

Fix html.angular, js2.editor, js2.nodejs and js2.requirejs tests

1) The tests, that rely on information from the JS classpath (stub
definitions fail if classpath scanning is still in progress, so this
change forces repository updates to happen and delay test running
until scanning is done.

2) Changes to test input cause golden files to be out of sync. Align
input and golden files to match.

Tests were not actives for travis or github as execution takes to long.
---
 .../test/unit/data/testfiles/with/test01.js|  4 +-
 .../with/test01.js.testWith_01.occurrences |  2 +-
 .../with/test01.js.testWith_02.occurrences |  4 +-
 .../with/test01.js.testWith_03.occurrences |  4 +-
 .../modules/javascript2/editor/JsTestBase.java | 72 +-
 .../modules/javascript2/editor/JsWithFastTest.java |  6 +-
 .../modules/javascript2/editor/JsWithTest.java |  2 +-
 7 files changed, 82 insertions(+), 12 deletions(-)

diff --git 
a/webcommon/javascript2.editor/test/unit/data/testfiles/with/test01.js 
b/webcommon/javascript2.editor/test/unit/data/testfiles/with/test01.js
index 9dc3298..5707a9f 100644
--- a/webcommon/javascript2.editor/test/unit/data/testfiles/with/test01.js
+++ b/webcommon/javascript2.editor/test/unit/data/testfiles/with/test01.js
@@ -1,7 +1,7 @@
 var roman = new Man("Roman", "Php");
 
 roman.getFirstName();
-console.log();  
+console.log();
 with(roman) {
-   console.log(getFirstName()); 
+console.log(getFirstName());
 }
\ No newline at end of file
diff --git 
a/webcommon/javascript2.editor/test/unit/data/testfiles/with/test01.js.testWith_01.occurrences
 
b/webcommon/javascript2.editor/test/unit/data/testfiles/with/test01.js.testWith_01.occurrences
index 0dda9bb..9e2e8b6 100644
--- 
a/webcommon/javascript2.editor/test/unit/data/testfiles/with/test01.js.testWith_01.occurrences
+++ 
b/webcommon/javascript2.editor/test/unit/data/testfiles/with/test01.js.testWith_01.occurrences
@@ -1,2 +1,2 @@
 roman.|>MARK_OCCURRENCES:getFirstName<|();
-   console.log(|>MARK_OCCURRENCES:getFirst^Name<|()); 
+console.log(|>MARK_OCCURRENCES:getFirst^Name<|());
diff --git 
a/webcommon/javascript2.editor/test/unit/data/testfiles/with/test01.js.testWith_02.occurrences
 
b/webcommon/javascript2.editor/test/unit/data/testfiles/with/test01.js.testWith_02.occurrences
index 00ea534..34297ad 100644
--- 
a/webcommon/javascript2.editor/test/unit/data/testfiles/with/test01.js.testWith_02.occurrences
+++ 
b/webcommon/javascript2.editor/test/unit/data/testfiles/with/test01.js.testWith_02.occurrences
@@ -1,2 +1,2 @@
-console.|>MARK_OCCURRENCES:log<|();  
-   console.|>MARK_OCCURRENCES:l^og<|(getFirstName()); 
+console.|>MARK_OCCURRENCES:log<|();
+console.|>MARK_OCCURRENCES:l^og<|(getFirstName());
\ No newline at end of file
diff --git 
a/webcommon/javascript2.editor/test/unit/data/testfiles/with/test01.js.testWith_03.occurrences
 
b/webcommon/javascript2.editor/test/unit/data/testfiles/with/test01.js.testWith_03.occurrences
index 50fa5a8..1383b45 100644
--- 
a/webcommon/javascript2.editor/test/unit/data/testfiles/with/test01.js.testWith_03.occurrences
+++ 
b/webcommon/javascript2.editor/test/unit/data/testfiles/with/test01.js.testWith_03.occurrences
@@ -1,2 +1,2 @@
-|>MARK_OCCURRENCES:console<|.log();  
-   |>MARK_OCCURRENCES:conso^le<|.log(getFirstName()); 
+|>MARK_OCCURRENCES:console<|.log();
+|>MARK_OCCURRENCES:conso^le<|.log(getFirstName());
diff --git 
a/webcommon/javascript2.editor/test/unit/src/org/netbeans/modules/javascript2/editor/JsTestBase.java
 
b/webcommon/javascript2.editor/test/unit/src/org/netbeans/modules/javascript2/editor/JsTestBase.java
index f6c548c..679e9b7 100644
--- 
a/webcommon/javascript2.editor/test/unit/src/org/netbeans/modules/javascript2/editor/JsTestBase.java
+++ 
b/webcommon/javascript2.editor/test/unit/src/org/netbeans/modules/javascript2/editor/JsTestBase.java
@@ -19,12 +19,15 @@
 
 package org.netbeans.modules.javascript2.editor;
 
+import java.net.URL;
 import java.util.Collections;
 import java.util.Set;
 import org.netbeans.lib.lexer.test.TestLanguageProvider;
 import org.netbeans.modules.csl.api.test.CslTestBase;
 import org.netbeans.modules.csl.spi.DefaultLanguageConfig;
 import org.netbeans.modules.javascript2.lexer.api.JsTokenId;
+import org.netbeans.modules.parsing.impl.indexing.IndexingUtils;
+import 

[jira] [Closed] (NETBEANS-6337) remove annotation warnings related to deprecating

2021-12-27 Thread Brad Walker (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-6337?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Brad Walker closed NETBEANS-6337.
-
Resolution: Fixed

fixed & integrated..

> remove annotation warnings related to deprecating
> -
>
> Key: NETBEANS-6337
> URL: https://issues.apache.org/jira/browse/NETBEANS-6337
> Project: NetBeans
>  Issue Type: Improvement
>Reporter: Brad Walker
>Assignee: Brad Walker
>Priority: Minor
>  Labels: pull-request-available
> Fix For: NB13, 13
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> Cleanup warnings related to improper deprecation annotation..
> Like this..
> {code:java}
>[repeat] 
> /home/bwalker/src/netbeans/platform/openide.options/src/org/openide/text/NbDocument$Colors.java:31:
>  warning: [dep-ann] deprecated item is not annotated with @Deprecated
>[repeat] public final class NbDocument$Colors extends 
> org.openide.options.SystemOption {
>[repeat]  ^
>[repeat] 48 warnings
>  [copy] Copying 1 file to 
> /home/bwalker/src/netbeans/platform/openide.options/build/classes
> {code}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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] [Comment Edited] (NETBEANS-765) HiDPI resolution of 3840x2160 results in tiny icons and text fields that are too small for the text within (Linux)

2021-12-27 Thread Keeley (Jira)


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

Keeley edited comment on NETBEANS-765 at 12/27/21, 7:20 PM:


Hi there, this is just a little bump saying that stock 4K Netbeans 12.6 on 
Ubuntu has tiny text and very squished and hard to use options menus/side 
panes, as you can hopefully see in the attached picture. Just a 1.5x or 2x UI 
scaling would surely fix this, is there a canonical non-hack way to accomplish 
this?

!Screenshot from 2021-12-27 14-11-40.png|width=944,height=536!


was (Author: JIRAUSER282663):
Hi there, this is just a little bump saying that stock Netbeans 12.6 on Ubuntu 
has tiny text and very squished and hard to use options menus/side panes, as 
you can hopefully see in the attached picture. Just a 1.5x or 2x UI scaling 
would surely fix this, is there a canonical non-hack way to accomplish this?

!Screenshot from 2021-12-27 14-11-40.png|width=944,height=536!

> HiDPI resolution of 3840x2160 results in tiny icons and text fields that are 
> too small for the text within (Linux)
> --
>
> Key: NETBEANS-765
> URL: https://issues.apache.org/jira/browse/NETBEANS-765
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - UI
>Affects Versions: 9.0
>Reporter: Sidney Lins
>Priority: Major
>  Labels: HiDPI
> Attachments: Screenshot from 2018-05-28 19-29-19.png, Screenshot from 
> 2018-05-28 19-29-19.png, Screenshot from 2018-05-28 19-40-36.png, Screenshot 
> from 2018-07-07 21-21-32.jpg, Screenshot from 2018-08-26 10-10-34.png, 
> Screenshot from 2021-12-27 14-11-40.png, Screenshot from 2021-12-27 
> 14-14-18.png
>
>
> Please, refer to [https://netbeans.org/bugzilla/show_bug.cgi?id=252452] to 
> get more information.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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] [Updated] (NETBEANS-765) HiDPI resolution of 3840x2160 results in tiny icons and text fields that are too small for the text within (Linux)

2021-12-27 Thread Keeley (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-765?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Keeley updated NETBEANS-765:

Attachment: Screenshot from 2021-12-27 14-14-18.png

> HiDPI resolution of 3840x2160 results in tiny icons and text fields that are 
> too small for the text within (Linux)
> --
>
> Key: NETBEANS-765
> URL: https://issues.apache.org/jira/browse/NETBEANS-765
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - UI
>Affects Versions: 9.0
>Reporter: Sidney Lins
>Priority: Major
>  Labels: HiDPI
> Attachments: Screenshot from 2018-05-28 19-29-19.png, Screenshot from 
> 2018-05-28 19-29-19.png, Screenshot from 2018-05-28 19-40-36.png, Screenshot 
> from 2018-07-07 21-21-32.jpg, Screenshot from 2018-08-26 10-10-34.png, 
> Screenshot from 2021-12-27 14-11-40.png, Screenshot from 2021-12-27 
> 14-14-18.png
>
>
> Please, refer to [https://netbeans.org/bugzilla/show_bug.cgi?id=252452] to 
> get more information.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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] [Commented] (NETBEANS-765) HiDPI resolution of 3840x2160 results in tiny icons and text fields that are too small for the text within (Linux)

2021-12-27 Thread Keeley (Jira)


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

Keeley commented on NETBEANS-765:
-

Here is maybe a better example screenshot:

!Screenshot from 2021-12-27 14-14-18.png|width=972,height=549!

> HiDPI resolution of 3840x2160 results in tiny icons and text fields that are 
> too small for the text within (Linux)
> --
>
> Key: NETBEANS-765
> URL: https://issues.apache.org/jira/browse/NETBEANS-765
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - UI
>Affects Versions: 9.0
>Reporter: Sidney Lins
>Priority: Major
>  Labels: HiDPI
> Attachments: Screenshot from 2018-05-28 19-29-19.png, Screenshot from 
> 2018-05-28 19-29-19.png, Screenshot from 2018-05-28 19-40-36.png, Screenshot 
> from 2018-07-07 21-21-32.jpg, Screenshot from 2018-08-26 10-10-34.png, 
> Screenshot from 2021-12-27 14-11-40.png, Screenshot from 2021-12-27 
> 14-14-18.png
>
>
> Please, refer to [https://netbeans.org/bugzilla/show_bug.cgi?id=252452] to 
> get more information.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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] [Commented] (NETBEANS-765) HiDPI resolution of 3840x2160 results in tiny icons and text fields that are too small for the text within (Linux)

2021-12-27 Thread Keeley (Jira)


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

Keeley commented on NETBEANS-765:
-

Hi there, this is just a little bump saying that stock Netbeans 12.6 on Ubuntu 
has tiny text and very squished and hard to use options menus/side panes, as 
you can hopefully see in the attached picture. Just a 1.5x or 2x UI scaling 
would surely fix this, is there a canonical non-hack way to accomplish this?

!Screenshot from 2021-12-27 14-11-40.png|width=944,height=536!

> HiDPI resolution of 3840x2160 results in tiny icons and text fields that are 
> too small for the text within (Linux)
> --
>
> Key: NETBEANS-765
> URL: https://issues.apache.org/jira/browse/NETBEANS-765
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - UI
>Affects Versions: 9.0
>Reporter: Sidney Lins
>Priority: Major
>  Labels: HiDPI
> Attachments: Screenshot from 2018-05-28 19-29-19.png, Screenshot from 
> 2018-05-28 19-29-19.png, Screenshot from 2018-05-28 19-40-36.png, Screenshot 
> from 2018-07-07 21-21-32.jpg, Screenshot from 2018-08-26 10-10-34.png, 
> Screenshot from 2021-12-27 14-11-40.png
>
>
> Please, refer to [https://netbeans.org/bugzilla/show_bug.cgi?id=252452] to 
> get more information.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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] [Updated] (NETBEANS-765) HiDPI resolution of 3840x2160 results in tiny icons and text fields that are too small for the text within (Linux)

2021-12-27 Thread Keeley (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-765?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Keeley updated NETBEANS-765:

Attachment: Screenshot from 2021-12-27 14-11-40.png

> HiDPI resolution of 3840x2160 results in tiny icons and text fields that are 
> too small for the text within (Linux)
> --
>
> Key: NETBEANS-765
> URL: https://issues.apache.org/jira/browse/NETBEANS-765
> Project: NetBeans
>  Issue Type: Bug
>  Components: ide - UI
>Affects Versions: 9.0
>Reporter: Sidney Lins
>Priority: Major
>  Labels: HiDPI
> Attachments: Screenshot from 2018-05-28 19-29-19.png, Screenshot from 
> 2018-05-28 19-29-19.png, Screenshot from 2018-05-28 19-40-36.png, Screenshot 
> from 2018-07-07 21-21-32.jpg, Screenshot from 2018-08-26 10-10-34.png, 
> Screenshot from 2021-12-27 14-11-40.png
>
>
> Please, refer to [https://netbeans.org/bugzilla/show_bug.cgi?id=252452] to 
> get more information.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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] [Updated] (NETBEANS-6337) remove annotation warnings related to deprecating

2021-12-27 Thread Brad Walker (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-6337?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Brad Walker updated NETBEANS-6337:
--
Fix Version/s: NB13

> remove annotation warnings related to deprecating
> -
>
> Key: NETBEANS-6337
> URL: https://issues.apache.org/jira/browse/NETBEANS-6337
> Project: NetBeans
>  Issue Type: Improvement
>Reporter: Brad Walker
>Assignee: Brad Walker
>Priority: Minor
>  Labels: pull-request-available
> Fix For: NB13, 13
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> Cleanup warnings related to improper deprecation annotation..
> Like this..
> {code:java}
>[repeat] 
> /home/bwalker/src/netbeans/platform/openide.options/src/org/openide/text/NbDocument$Colors.java:31:
>  warning: [dep-ann] deprecated item is not annotated with @Deprecated
>[repeat] public final class NbDocument$Colors extends 
> org.openide.options.SystemOption {
>[repeat]  ^
>[repeat] 48 warnings
>  [copy] Copying 1 file to 
> /home/bwalker/src/netbeans/platform/openide.options/build/classes
> {code}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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: [NETBEANS-6337] - remove annotation warnings related to deprecating (#3390)

2021-12-27 Thread bwalker
This is an automated email from the ASF dual-hosted git repository.

bwalker 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 615eed4  [NETBEANS-6337] - remove annotation warnings related to 
deprecating (#3390)
615eed4 is described below

commit 615eed47d0b6220e0366c72120153fae644d3937
Author: Brad Walker 
AuthorDate: Mon Dec 27 10:43:45 2021 -0700

[NETBEANS-6337] - remove annotation warnings related to deprecating (#3390)

Cleanup warnings related to improper deprecation annotation..

Like this..

   [repeat] 
/home/bwalker/src/netbeans/platform/openide.options/src/org/openide/text/NbDocument$Colors.java:31:
 warning: [dep-ann] deprecated item is not annotated with @Deprecated
   [repeat] public final class NbDocument$Colors extends 
org.openide.options.SystemOption {
   [repeat]  ^
   [repeat] 48 warnings
 [copy] Copying 1 file to 
/home/bwalker/src/netbeans/platform/openide.options/build/classes
---
 .../org/netbeans/modules/glassfish/tooling/admin/ServerAdmin.java  | 4 
 .../org/netbeans/modules/glassfish/tooling/data/IdeContext.java| 2 ++
 .../src/org/netbeans/modules/j2ee/api/ejbjar/Car.java  | 1 +
 .../src/org/netbeans/modules/j2ee/api/ejbjar/Ear.java  | 1 +
 .../src/org/netbeans/modules/j2ee/api/ejbjar/EjbJar.java   | 1 +
 .../org/netbeans/modules/j2ee/spi/ejbjar/CarImplementation.java| 1 +
 .../org/netbeans/modules/j2ee/spi/ejbjar/EarImplementation.java| 1 +
 .../src/org/netbeans/modules/j2ee/spi/ejbjar/EjbJarFactory.java| 1 +
 .../org/netbeans/modules/j2ee/spi/ejbjar/EjbJarImplementation.java | 1 +
 .../org/netbeans/modules/j2ee/common/ui/BrokenServerSupport.java   | 1 +
 .../netbeans/modules/j2ee/common/ui/NoSelectedServerWarning.java   | 1 +
 .../org/netbeans/modules/j2ee/dd/api/webservices/DDProvider.java   | 1 +
 .../src/org/netbeans/modules/j2ee/dd/api/client/DDProvider.java| 1 +
 .../src/org/netbeans/modules/j2ee/dd/api/web/DDProvider.java   | 1 +
 .../org/netbeans/modules/j2ee/ejbjarproject/EjbJarProvider.java| 1 +
 .../modules/j2ee/ejbjarproject/api/EjbJarProjectGenerator.java | 1 +
 .../netbeans/modules/payara/common/ui/JavaPlatformsComboBox.java   | 3 +++
 .../modules/payara/eecommon/dd/loader/PayaraDDProvider.java| 1 +
 .../src/org/netbeans/modules/payara/tooling/admin/ServerAdmin.java | 4 
 .../src/org/netbeans/modules/web/jsf/api/JsfComponentUtils.java| 1 +
 .../src/org/netbeans/modules/editor/FormatterIndentEngine.java | 3 ++-
 .../src/org/netbeans/editor/ext/plain/PlainSyntax.java | 1 +
 .../src/org/netbeans/editor/ext/plain/PlainTokenContext.java   | 1 +
 .../org/netbeans/modules/xml/catalog/lib/StreamEnvironment.java| 1 +
 .../org/netbeans/modules/xml/catalog/spi/CatalogDescriptor.java| 1 +
 .../modules/j2ee/persistence/entitygenerator/EntityMember.java | 1 +
 .../src/org/netbeans/modules/maven/api/output/OutputUtils.java | 1 +
 .../src/org/netbeans/api/progress/ProgressHandleFactory.java   | 7 +--
 .../org/openide/loaders/CreateFromTemplateAttributesProvider.java  | 1 +
 29 files changed, 43 insertions(+), 3 deletions(-)

diff --git 
a/enterprise/glassfish.tooling/src/org/netbeans/modules/glassfish/tooling/admin/ServerAdmin.java
 
b/enterprise/glassfish.tooling/src/org/netbeans/modules/glassfish/tooling/admin/ServerAdmin.java
index ffa36b6..39d0697 100644
--- 
a/enterprise/glassfish.tooling/src/org/netbeans/modules/glassfish/tooling/admin/ServerAdmin.java
+++ 
b/enterprise/glassfish.tooling/src/org/netbeans/modules/glassfish/tooling/admin/ServerAdmin.java
@@ -62,6 +62,7 @@ public class ServerAdmin {
  * @param ide IDE Context object (not used).
  * @deprecated {@link IdeContext} class will be removed.
  */
+@Deprecated
 public static  Future exec(
 final GlassFishServer srv, final Command cmd,
 final IdeContext ide) {
@@ -82,6 +83,7 @@ public class ServerAdmin {
  * @param listeners Listeners that are called when command execution 
status changes.
  * @deprecated {@link IdeContext} class will be removed.
  */
+@Deprecated
 public static  Future exec(
 final GlassFishServer srv, final Command cmd, final IdeContext ide,
 final TaskStateListener... listeners) {
@@ -115,6 +117,7 @@ public class ServerAdmin {
  * @param ide  IDE Context object (not used).
  * @deprecated {@link IdeContext} class will be removed.
  */
+@Deprecated
 public static  Future exec(
 final ExecutorService executor, final GlassFishServer srv,
 final Command cmd, final IdeContext ide) {
@@ -133,6 +136,7 @@ public class ServerAdmin {
  * @param listeners Listeners that are called when command execution 
status changes.
  * @deprecated {@link IdeContext} 

[jira] [Updated] (NETBEANS-6337) remove annotation warnings related to deprecating

2021-12-27 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-6337?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

ASF GitHub Bot updated NETBEANS-6337:
-
Labels: pull-request-available  (was: )

> remove annotation warnings related to deprecating
> -
>
> Key: NETBEANS-6337
> URL: https://issues.apache.org/jira/browse/NETBEANS-6337
> Project: NetBeans
>  Issue Type: Improvement
>Reporter: Brad Walker
>Assignee: Brad Walker
>Priority: Minor
>  Labels: pull-request-available
> Fix For: 13
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Cleanup warnings related to improper deprecation annotation..
> Like this..
> {code:java}
>[repeat] 
> /home/bwalker/src/netbeans/platform/openide.options/src/org/openide/text/NbDocument$Colors.java:31:
>  warning: [dep-ann] deprecated item is not annotated with @Deprecated
>[repeat] public final class NbDocument$Colors extends 
> org.openide.options.SystemOption {
>[repeat]  ^
>[repeat] 48 warnings
>  [copy] Copying 1 file to 
> /home/bwalker/src/netbeans/platform/openide.options/build/classes
> {code}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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] [Commented] (NETBEANS-2515) cleanup the build issues

2021-12-27 Thread Brad Walker (Jira)


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

Brad Walker commented on NETBEANS-2515:
---

NETBEANS-6337
 - remove annotation warnings related to deprecating

> cleanup the build issues
> 
>
> Key: NETBEANS-2515
> URL: https://issues.apache.org/jira/browse/NETBEANS-2515
> Project: NetBeans
>  Issue Type: Improvement
>Reporter: Brad Walker
>Assignee: Brad Walker
>Priority: Major
>
> The build process has a lot of errors/warnings.
> I've created this Jira to track all the issues related to cleaning up
> The first canidate is: NETBEANS-2514



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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-6337) remove annotation warnings related to deprecating

2021-12-27 Thread Brad Walker (Jira)
Brad Walker created NETBEANS-6337:
-

 Summary: remove annotation warnings related to deprecating
 Key: NETBEANS-6337
 URL: https://issues.apache.org/jira/browse/NETBEANS-6337
 Project: NetBeans
  Issue Type: Improvement
Reporter: Brad Walker
Assignee: Brad Walker
 Fix For: 13


Cleanup warnings related to improper deprecation annotation..

Like this..

{code:java}
   [repeat] 
/home/bwalker/src/netbeans/platform/openide.options/src/org/openide/text/NbDocument$Colors.java:31:
 warning: [dep-ann] deprecated item is not annotated with @Deprecated
   [repeat] public final class NbDocument$Colors extends 
org.openide.options.SystemOption {
   [repeat]  ^
   [repeat] 48 warnings
 [copy] Copying 1 file to 
/home/bwalker/src/netbeans/platform/openide.options/build/classes
{code}




--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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-6336) Ubuntu reporting deprecated call from the IDE

2021-12-27 Thread Claudia Pastor Ramirez (Jira)
Claudia Pastor Ramirez created NETBEANS-6336:


 Summary: Ubuntu reporting deprecated call from the IDE
 Key: NETBEANS-6336
 URL: https://issues.apache.org/jira/browse/NETBEANS-6336
 Project: NetBeans
  Issue Type: Bug
  Components: core
Affects Versions: 12.5, 12.6
 Environment: Ubuntu 20.04

Netbeans 12.6
Reporter: Claudia Pastor Ramirez
 Attachments: image-2021-12-27-14-09-16-940.png

Despite having correct user permissions, I was unable of adding my Tomcat 
server to Netbeans. Checking the syslog I found the following messages:

!image-2021-12-27-14-09-16-940.png!

So, I am reporting it to the maintainers as the log requested. 

Regards,



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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-6335) Include Java 8 time classes in the Entity Class Creation Wizard

2021-12-27 Thread Claudia Pastor Ramirez (Jira)
Claudia Pastor Ramirez created NETBEANS-6335:


 Summary: Include Java 8 time classes in the Entity Class Creation 
Wizard
 Key: NETBEANS-6335
 URL: https://issues.apache.org/jira/browse/NETBEANS-6335
 Project: NetBeans
  Issue Type: Improvement
  Components: javaee - Persistence
 Environment: Not relevant.
Reporter: Claudia Pastor Ramirez


The Wizard that creates the Entity Classes from Database still uses the 
java.util.Date class instead the Java8 time classes.

It would good to update it and even better if the user could choose to use one 
or the others, like you can choose between using Collection, or Set or List for 
the relationships collections.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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] [Comment Edited] (NETBEANS-6030) Unable to add Jakarta Persistence Provider

2021-12-27 Thread Claudia Pastor Ramirez (Jira)


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

Claudia Pastor Ramirez edited comment on NETBEANS-6030 at 12/27/21, 11:39 AM:
--

I have changed the impact to mayor because even if I can work with it, this 
problem is making the Entity creation Wizard from database function wrong. 

First, it automatically creates de classes with javax imports. That one is easy 
to solve with a simple replace, even if it is annoying. 

Second, and more important, it does not recognise the previously created entity 
classes, even when it have been created by the wizard, so any time I do a 
change and recreate the classes, I find myself with duplicates of them, so I 
have to manually merge my previous class with the new one with the database 
updates, making the wizard almost useless.

!image-2021-12-27-12-36-33-211.png!


was (Author: cpr):
I have changed the impact to mayor because even if I can work with it, this 
problem is making the Entity creation Wizard from database function wrong. 

First, it automatically creates de classes with javax imports. That one is easy 
to solve with a simple replace, even if it is annoying. 

Second, and more important, it does not recognise the previously created entity 
classes, even when it have been created by the wizard, so any time I do a 
change, or recreate the classes, I find myself with duplicates of them.

!image-2021-12-27-12-36-33-211.png!

> Unable to add Jakarta Persistence Provider
> --
>
> Key: NETBEANS-6030
> URL: https://issues.apache.org/jira/browse/NETBEANS-6030
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Persistence
>Affects Versions: 12.4, 12.5, 12.6
> Environment: Netbeans 12.4 both on Windows 10 and Ubuntu 20.04.
> Netbeans 12.5 on Ubuntu 20.04.
> API versions tested: Jakarta 2.2.3 and 3.0.0
> Persistence providers: Eclipselink-3.0.2 and Hibernate-5.5.3
>Reporter: Claudia Pastor Ramirez
>Priority: Major
> Attachments: Captura de pantalla 2021-08-27 151310.png, Captura de 
> pantalla de 2021-10-08 14-36-56.png, Captura de pantalla de 2021-10-08 
> 14-43-10.png, ErrorMessage.png, image-2021-12-27-12-36-33-211.png
>
>
> Hello everyone,
> First of all, thank you for your work on the IDE and your support on this 
> concrete matter.
> The problem I currently have is that I am trying to add a new persistence 
> provider for the 3.0 Persistence API, but the IDE seems to be unable to 
> recognise the libraries as valid. I have tried both with Eclipselink and with 
> Hibernate. Attached is the image of one of the attempts with Eclipselink (I 
> have done several changing the included jars trying to find the problem). 
> !Captura de pantalla 2021-08-27 151310.png!
>  
> I am able to work with my projects despite of that, because I use Maven and 
> the libraries are included anyway, but the IDE keeps telling me that my 
> persistence.xml is wrong because it is declared as version 3.0 and giving me 
> annoying warning and error messages right and left.
> !ErrorMessage.png!
> I suspect that the problem is because the wizard does not find the 
> EntityManager under the Jakarta namespace, so it does not allow to carry on 
> (it fails with other Jakarta jars, with lower versions too), but I have not 
> way of verifying it.
> Thank you again for your help. Regards,
>  
> NOTE: There seems to be also problems because I am using a 5.0 servlet 
> version and it does not recognise it as you can see in the errors, but this 
> one affects less to my work, so I have not opened an issue for it. Should I?
>  
> {color:#ff}UPDATED today a 12.5 and still fails.{color}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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] [Commented] (NETBEANS-6030) Unable to add Jakarta Persistence Provider

2021-12-27 Thread Claudia Pastor Ramirez (Jira)


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

Claudia Pastor Ramirez commented on NETBEANS-6030:
--

I have changed the impact to mayor because even if I can work with it, this 
problem is making the Entity creation Wizard from database function wrong. 

First, it automatically creates de classes with javax imports. That one is easy 
to solve with a simple replace, even if it is annoying. 

Second, and more important, it does not recognise the previously created entity 
classes, even when it have been created by the wizard, so any time I do a 
change, or recreate the classes, I find myself with duplicates of them.

!image-2021-12-27-12-36-33-211.png!

> Unable to add Jakarta Persistence Provider
> --
>
> Key: NETBEANS-6030
> URL: https://issues.apache.org/jira/browse/NETBEANS-6030
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Persistence
>Affects Versions: 12.4, 12.5, 12.6
> Environment: Netbeans 12.4 both on Windows 10 and Ubuntu 20.04.
> Netbeans 12.5 on Ubuntu 20.04.
> API versions tested: Jakarta 2.2.3 and 3.0.0
> Persistence providers: Eclipselink-3.0.2 and Hibernate-5.5.3
>Reporter: Claudia Pastor Ramirez
>Priority: Major
> Attachments: Captura de pantalla 2021-08-27 151310.png, Captura de 
> pantalla de 2021-10-08 14-36-56.png, Captura de pantalla de 2021-10-08 
> 14-43-10.png, ErrorMessage.png, image-2021-12-27-12-36-33-211.png
>
>
> Hello everyone,
> First of all, thank you for your work on the IDE and your support on this 
> concrete matter.
> The problem I currently have is that I am trying to add a new persistence 
> provider for the 3.0 Persistence API, but the IDE seems to be unable to 
> recognise the libraries as valid. I have tried both with Eclipselink and with 
> Hibernate. Attached is the image of one of the attempts with Eclipselink (I 
> have done several changing the included jars trying to find the problem). 
> !Captura de pantalla 2021-08-27 151310.png!
>  
> I am able to work with my projects despite of that, because I use Maven and 
> the libraries are included anyway, but the IDE keeps telling me that my 
> persistence.xml is wrong because it is declared as version 3.0 and giving me 
> annoying warning and error messages right and left.
> !ErrorMessage.png!
> I suspect that the problem is because the wizard does not find the 
> EntityManager under the Jakarta namespace, so it does not allow to carry on 
> (it fails with other Jakarta jars, with lower versions too), but I have not 
> way of verifying it.
> Thank you again for your help. Regards,
>  
> NOTE: There seems to be also problems because I am using a 5.0 servlet 
> version and it does not recognise it as you can see in the errors, but this 
> one affects less to my work, so I have not opened an issue for it. Should I?
>  
> {color:#ff}UPDATED today a 12.5 and still fails.{color}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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] [Updated] (NETBEANS-6030) Unable to add Jakarta Persistence Provider

2021-12-27 Thread Claudia Pastor Ramirez (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-6030?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Claudia Pastor Ramirez updated NETBEANS-6030:
-
Attachment: image-2021-12-27-12-36-33-211.png

> Unable to add Jakarta Persistence Provider
> --
>
> Key: NETBEANS-6030
> URL: https://issues.apache.org/jira/browse/NETBEANS-6030
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Persistence
>Affects Versions: 12.4, 12.5, 12.6
> Environment: Netbeans 12.4 both on Windows 10 and Ubuntu 20.04.
> Netbeans 12.5 on Ubuntu 20.04.
> API versions tested: Jakarta 2.2.3 and 3.0.0
> Persistence providers: Eclipselink-3.0.2 and Hibernate-5.5.3
>Reporter: Claudia Pastor Ramirez
>Priority: Major
> Attachments: Captura de pantalla 2021-08-27 151310.png, Captura de 
> pantalla de 2021-10-08 14-36-56.png, Captura de pantalla de 2021-10-08 
> 14-43-10.png, ErrorMessage.png, image-2021-12-27-12-36-33-211.png
>
>
> Hello everyone,
> First of all, thank you for your work on the IDE and your support on this 
> concrete matter.
> The problem I currently have is that I am trying to add a new persistence 
> provider for the 3.0 Persistence API, but the IDE seems to be unable to 
> recognise the libraries as valid. I have tried both with Eclipselink and with 
> Hibernate. Attached is the image of one of the attempts with Eclipselink (I 
> have done several changing the included jars trying to find the problem). 
> !Captura de pantalla 2021-08-27 151310.png!
>  
> I am able to work with my projects despite of that, because I use Maven and 
> the libraries are included anyway, but the IDE keeps telling me that my 
> persistence.xml is wrong because it is declared as version 3.0 and giving me 
> annoying warning and error messages right and left.
> !ErrorMessage.png!
> I suspect that the problem is because the wizard does not find the 
> EntityManager under the Jakarta namespace, so it does not allow to carry on 
> (it fails with other Jakarta jars, with lower versions too), but I have not 
> way of verifying it.
> Thank you again for your help. Regards,
>  
> NOTE: There seems to be also problems because I am using a 5.0 servlet 
> version and it does not recognise it as you can see in the errors, but this 
> one affects less to my work, so I have not opened an issue for it. Should I?
>  
> {color:#ff}UPDATED today a 12.5 and still fails.{color}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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] [Updated] (NETBEANS-6030) Unable to add Jakarta Persistence Provider

2021-12-27 Thread Claudia Pastor Ramirez (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-6030?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Claudia Pastor Ramirez updated NETBEANS-6030:
-
Affects Version/s: 12.6

> Unable to add Jakarta Persistence Provider
> --
>
> Key: NETBEANS-6030
> URL: https://issues.apache.org/jira/browse/NETBEANS-6030
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Persistence
>Affects Versions: 12.4, 12.5, 12.6
> Environment: Netbeans 12.4 both on Windows 10 and Ubuntu 20.04.
> Netbeans 12.5 on Ubuntu 20.04.
> API versions tested: Jakarta 2.2.3 and 3.0.0
> Persistence providers: Eclipselink-3.0.2 and Hibernate-5.5.3
>Reporter: Claudia Pastor Ramirez
>Priority: Major
> Attachments: Captura de pantalla 2021-08-27 151310.png, Captura de 
> pantalla de 2021-10-08 14-36-56.png, Captura de pantalla de 2021-10-08 
> 14-43-10.png, ErrorMessage.png
>
>
> Hello everyone,
> First of all, thank you for your work on the IDE and your support on this 
> concrete matter.
> The problem I currently have is that I am trying to add a new persistence 
> provider for the 3.0 Persistence API, but the IDE seems to be unable to 
> recognise the libraries as valid. I have tried both with Eclipselink and with 
> Hibernate. Attached is the image of one of the attempts with Eclipselink (I 
> have done several changing the included jars trying to find the problem). 
> !Captura de pantalla 2021-08-27 151310.png!
>  
> I am able to work with my projects despite of that, because I use Maven and 
> the libraries are included anyway, but the IDE keeps telling me that my 
> persistence.xml is wrong because it is declared as version 3.0 and giving me 
> annoying warning and error messages right and left.
> !ErrorMessage.png!
> I suspect that the problem is because the wizard does not find the 
> EntityManager under the Jakarta namespace, so it does not allow to carry on 
> (it fails with other Jakarta jars, with lower versions too), but I have not 
> way of verifying it.
> Thank you again for your help. Regards,
>  
> NOTE: There seems to be also problems because I am using a 5.0 servlet 
> version and it does not recognise it as you can see in the errors, but this 
> one affects less to my work, so I have not opened an issue for it. Should I?
>  
> {color:#ff}UPDATED today a 12.5 and still fails.{color}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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] [Updated] (NETBEANS-6030) Unable to add Jakarta Persistence Provider

2021-12-27 Thread Claudia Pastor Ramirez (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-6030?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Claudia Pastor Ramirez updated NETBEANS-6030:
-
Priority: Major  (was: Minor)

> Unable to add Jakarta Persistence Provider
> --
>
> Key: NETBEANS-6030
> URL: https://issues.apache.org/jira/browse/NETBEANS-6030
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - Persistence
>Affects Versions: 12.4, 12.5
> Environment: Netbeans 12.4 both on Windows 10 and Ubuntu 20.04.
> Netbeans 12.5 on Ubuntu 20.04.
> API versions tested: Jakarta 2.2.3 and 3.0.0
> Persistence providers: Eclipselink-3.0.2 and Hibernate-5.5.3
>Reporter: Claudia Pastor Ramirez
>Priority: Major
> Attachments: Captura de pantalla 2021-08-27 151310.png, Captura de 
> pantalla de 2021-10-08 14-36-56.png, Captura de pantalla de 2021-10-08 
> 14-43-10.png, ErrorMessage.png
>
>
> Hello everyone,
> First of all, thank you for your work on the IDE and your support on this 
> concrete matter.
> The problem I currently have is that I am trying to add a new persistence 
> provider for the 3.0 Persistence API, but the IDE seems to be unable to 
> recognise the libraries as valid. I have tried both with Eclipselink and with 
> Hibernate. Attached is the image of one of the attempts with Eclipselink (I 
> have done several changing the included jars trying to find the problem). 
> !Captura de pantalla 2021-08-27 151310.png!
>  
> I am able to work with my projects despite of that, because I use Maven and 
> the libraries are included anyway, but the IDE keeps telling me that my 
> persistence.xml is wrong because it is declared as version 3.0 and giving me 
> annoying warning and error messages right and left.
> !ErrorMessage.png!
> I suspect that the problem is because the wizard does not find the 
> EntityManager under the Jakarta namespace, so it does not allow to carry on 
> (it fails with other Jakarta jars, with lower versions too), but I have not 
> way of verifying it.
> Thank you again for your help. Regards,
>  
> NOTE: There seems to be also problems because I am using a 5.0 servlet 
> version and it does not recognise it as you can see in the errors, but this 
> one affects less to my work, so I have not opened an issue for it. Should I?
>  
> {color:#ff}UPDATED today a 12.5 and still fails.{color}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
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