[jira] [Comment Edited] (NETBEANS-180) Please support the Language Server Protocol
[ https://issues.apache.org/jira/browse/NETBEANS-180?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17143571#comment-17143571 ] Aurélien Pupier edited comment on NETBEANS-180 at 6/24/20, 6:55 AM: I was able to have UI to appear. But I was unable to make it working. I tried with [Camel Language Server |https://github.com/camel-tooling/camel-language-server/]. it can work with several languages (xml, groovy, java, kotlin, javascript). The language server is distributed as a standalone jar. for extensions, i tried to use `xml`, `*.xml`, `groovy`. I tried inside and outside of a project. I tried with and without specifying a grammar file (when not providing one, there is an exception logged, reported https://issues.apache.org/jira/browse/NETBEANS-4497). was (Author: apupier): I was able to have UI to appear. But I was unable to make it working. I tried with [Camel Language Server |https://github.com/camel-tooling/camel-language-server/]. it can work with several languages (xml, groovy, java, kotlin, javascript). The language server is distributed as a standalone jar. for extensions, i tried to use `xml`, `*.xml`, `groovy`. I tried inside and outside of a project. I tried with and without specifying a grammar file (when not providing one, there is an exception logged). > Please support the Language Server Protocol > --- > > Key: NETBEANS-180 > URL: https://issues.apache.org/jira/browse/NETBEANS-180 > Project: NetBeans > Issue Type: New Feature > Components: editor - Lexer, editor - Other, editor - Parsing & > Indexing >Affects Versions: Next >Reporter: Christian Lenz >Assignee: Jan Lahoda >Priority: Major > Attachments: Screenshot from 2020-06-23 17-10-35.png, screen.jpg > > > As you can see it here: > https://code.visualstudio.com/blogs/2016/06/27/common-language-protocol and > here: https://github.com/Microsoft/language-server-protocol this stuff gets > very hot these days. It's about to have a commong language server, which > handles the language by them self and will send you errors, warnings, code > completion and many more without creating a new language support into the > IDE. This is very cool, so for netbeans it would be possible only to create > file templates and projects, not more, the rest will do the commong language > server protocol. > Cheers > Chris -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4497) Support Language Server without Grammar specified
Aurélien Pupier created NETBEANS-4497: - Summary: Support Language Server without Grammar specified Key: NETBEANS-4497 URL: https://issues.apache.org/jira/browse/NETBEANS-4497 Project: NetBeans Issue Type: Improvement Affects Versions: 12.0 Reporter: Aurélien Pupier some Language Servers provides help for a subpart of an existing lmanguage. In this case, it is not interesting to provide a new specific grammar. The classic one can be reused. Fo rinstance, the Camel Language Server is providing help for some specifc fields inside xml, Groovy, Java, JavaScript, Kotlin files. The grammar needs to stay the one corresponding to the language in general. When not providing one, there is an exception logged: {noformat} java.io.FileNotFoundException: (No such file or directory) at java.base/java.io.FileInputStream.open0(Native Method) at java.base/java.io.FileInputStream.open(FileInputStream.java:219) at java.base/java.io.FileInputStream.(FileInputStream.java:157) at org.eclipse.tm4e.core.registry.Registry.loadGrammarFromPathSync(Registry.java:140) at org.netbeans.modules.lsp.client.options.LanguageStorage.findScope(LanguageStorage.java:231) [catch] at org.netbeans.modules.lsp.client.options.LanguageStorage.lambda$store$1(LanguageStorage.java:115) at org.openide.filesystems.FileUtil$2.run(FileUtil.java:413) at org.openide.filesystems.EventControl.runAtomicAction(EventControl.java:102) at org.openide.filesystems.FileSystem.runAtomicAction(FileSystem.java:494) at org.openide.filesystems.FileUtil.runAtomicAction(FileUtil.java:397) at org.openide.filesystems.FileUtil.runAtomicAction(FileUtil.java:417) at org.netbeans.modules.lsp.client.options.LanguageStorage.store(LanguageStorage.java:65) at org.netbeans.modules.lsp.client.options.LanguageServersPanel.store(LanguageServersPanel.java:193) at org.netbeans.modules.lsp.client.options.LanguageServersOptionsPanelController$1.run(LanguageServersOptionsPanelController.java:51) at java.desktop/java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:313) at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:770) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:721) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:715) at java.base/java.security.AccessController.doPrivileged(Native Method) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:85) at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:740) at org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:136) at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:203) at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:124) at java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:113) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:109) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101) at java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:90) {noformat} -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-180) Please support the Language Server Protocol
[ https://issues.apache.org/jira/browse/NETBEANS-180?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17143571#comment-17143571 ] Aurélien Pupier commented on NETBEANS-180: -- I was able to have UI to appear. But I was unable to make it working. I tried with [Camel Language Server |https://github.com/camel-tooling/camel-language-server/]. it can work with several languages (xml, groovy, java, kotlin, javascript). The language server is distributed as a standalone jar. for extensions, i tried to use `xml`, `*.xml`, `groovy`. I tried inside and outside of a project. I tried with and without specifying a grammar file (when not providing one, there is an exception logged). > Please support the Language Server Protocol > --- > > Key: NETBEANS-180 > URL: https://issues.apache.org/jira/browse/NETBEANS-180 > Project: NetBeans > Issue Type: New Feature > Components: editor - Lexer, editor - Other, editor - Parsing & > Indexing >Affects Versions: Next >Reporter: Christian Lenz >Assignee: Jan Lahoda >Priority: Major > Attachments: Screenshot from 2020-06-23 17-10-35.png, screen.jpg > > > As you can see it here: > https://code.visualstudio.com/blogs/2016/06/27/common-language-protocol and > here: https://github.com/Microsoft/language-server-protocol this stuff gets > very hot these days. It's about to have a commong language server, which > handles the language by them self and will send you errors, warnings, code > completion and many more without creating a new language support into the > IDE. This is very cool, so for netbeans it would be possible only to create > file templates and projects, not more, the rest will do the commong language > server protocol. > Cheers > Chris -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4489) java.lang.OutOfMemoryError: GC overhead limit exceeded [Mac OS X]
[ https://issues.apache.org/jira/browse/NETBEANS-4489?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17143560#comment-17143560 ] Laszlo Kishalmi commented on NETBEANS-4489: --- You can try to grab a heapdump or heap histogram result. find the argiments of jmap command for details. besides of that if you can provide a minimal set of project/instructions to reproduce the issue that would be the best. I assume that there is a memory leak in the PHP parser. > java.lang.OutOfMemoryError: GC overhead limit exceeded [Mac OS X] > - > > Key: NETBEANS-4489 > URL: https://issues.apache.org/jira/browse/NETBEANS-4489 > Project: NetBeans > Issue Type: Bug > Environment: Product Version = NetBeans IDE 7.4 (Build > 201310111528) (#6523d6792981) > Operating System= Mac OS X version 10.14.5 running on x86_64 > Java; VM; Vendor= 1.8.0_111; Java HotSpot(TM) 64-Bit Server VM > 25.111-b14; Oracle Corporation > Runtime = Java(TM) SE Runtime Environment 1.8.0_111-b14 >Reporter: Pablo Roncaglia >Priority: Critical > Labels: memory > Attachments: messages.log.1 > > > I was working with a PHP project, getting files from a folder mounted on a > virtual machine with Debian via sshf. At one point, this unit was unmounted > by timeout, and by being able to not access it, I mounted the folder again. > Then, I immediately close the IDE in order to reload the project and try to > reopen it, and I get this error message. > This is my first time that I'm making a contribution to the project reporting > an issue, please guide me in how I can collaborate by providing more > information if it's necessary. > Thanks -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4495) [Usability] Provide empty project template / importing existing code bases in more unusual languages is very confusing
[ https://issues.apache.org/jira/browse/NETBEANS-4495?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] ell1e updated NETBEANS-4495: Description: The current new project dialog to me has this odd feel of wanting to 1. make me use some pre-existing template (I don't, I already have a code base), and 2. make me use one of the few languages or things to write that NetBeans somehow thinks are what I should be coding. This approach seems to work somewhat directly against the recent merging of LSP support for letting people just code what and however they want, and against people who may want to use NetBeans for more obscure things in particular. I get that for Code Insight, you may want to know what type of project the user is working on. However the current rigid limited template list has a tendency to breaks down in corner cases, even if you ignore LSP/obscure languages: e,g, many languages might be mixed in one project, making anything like "Java Project" or whatever a bad match anyway. There have to be better ways, e.g. letting the user pick the Code Insight support to enable later, or auto-detecting it based on file extensions present as files are added in. Therefore, I suggest the top entry in the new project dialog should be a "Generic Category" with an "Empty Project" entry. (And I'm not suggesting to REMOVE the template offerings below, it's just that for some use cases making users go through some fixed templating choice just seems too rigid. I am just suggesting a way more obvious way to bypass them.) If the given option is already present and I missed it I apologize for this unnecessary ticket. was: The current new project dialog to me has this odd feel of wanting to 1. make me use some pre-existing template (I don't, I already have a code base), and 2. make me use one of the few languages or things to write that NetBeans somehow thinks are what I should be coding. This approach seems to work somewhat directly against the recent merging of LSP support for letting people just code what and however they want, and against people who may want to use NetBeans for more obscure things in particular. I get that for Code Insight, you may want to know what type of project the user is working on. However the current rigid limited template list has a tendency to breaks down in corner cases, even if you ignore LSP/obscure languages: e,g, many languages might be mixed in one project, making anything like "Java Project" or whatever a bad match anyway. There have to be better ways, e.g. letting the user pick the Code Insight support to enable later, or auto-detecting it based on file extensions present as files are added in. Therefore, I suggest the top entry in the new project dialog should be a "Generic Category" with an "Empty Project" entry. If the given option is already present and I missed it I apologize for this unnecessary ticket. > [Usability] Provide empty project template / importing existing code bases in > more unusual languages is very confusing > -- > > Key: NETBEANS-4495 > URL: https://issues.apache.org/jira/browse/NETBEANS-4495 > Project: NetBeans > Issue Type: Improvement > Components: projects - Generic Projects UI >Affects Versions: 12.0 >Reporter: ell1e >Priority: Major > > The current new project dialog to me has this odd feel of wanting to 1. make > me use some pre-existing template (I don't, I already have a code base), and > 2. make me use one of the few languages or things to write that NetBeans > somehow thinks are what I should be coding. This approach seems to work > somewhat directly against the recent merging of LSP support for letting > people just code what and however they want, and against people who may want > to use NetBeans for more obscure things in particular. > I get that for Code Insight, you may want to know what type of project the > user is working on. However the current rigid limited template list has a > tendency to breaks down in corner cases, even if you ignore LSP/obscure > languages: e,g, many languages might be mixed in one project, making anything > like "Java Project" or whatever a bad match anyway. There have to be better > ways, e.g. letting the user pick the Code Insight support to enable later, or > auto-detecting it based on file extensions present as files are added in. > Therefore, I suggest the top entry in the new project dialog should be a > "Generic Category" with an "Empty Project" entry. (And I'm not suggesting to > REMOVE the template offerings below, it's just that for some use cases making > users go through some fixed templating choice just seems too rigid. I am just > suggesting a way more obvious way to bypass them
[jira] [Updated] (NETBEANS-4495) [Usability] Provide empty project template / importing existing code bases in more unusual languages is very confusing
[ https://issues.apache.org/jira/browse/NETBEANS-4495?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] ell1e updated NETBEANS-4495: Summary: [Usability] Provide empty project template / importing existing code bases in more unusual languages is very confusing (was: [Usability] Provide empty project template / opening existing projects in more unusual languages is very confusing) > [Usability] Provide empty project template / importing existing code bases in > more unusual languages is very confusing > -- > > Key: NETBEANS-4495 > URL: https://issues.apache.org/jira/browse/NETBEANS-4495 > Project: NetBeans > Issue Type: Improvement > Components: projects - Generic Projects UI >Affects Versions: 12.0 >Reporter: ell1e >Priority: Major > > The current new project dialog to me has this odd feel of wanting to 1. make > me use some pre-existing template (I don't, I already have a code base), and > 2. make me use one of the few languages or things to write that NetBeans > somehow thinks are what I should be coding in. This approach seems to work > somewhat directly against the recent merging of LSP support for letting > people just code what and however they want, and against people who may want > to use NetBeans for more obscure things in particular. > I get that for Code Insight, you may want to know what type of project the > user is working on. However the current rigid limited template list has a > tendency to breaks down in corner cases, even if you ignore LSP/obscure > languages: e,g, many languages might be mixed in one project, making anything > like "Java Project" or whatever a bad match anyway. There have to be better > ways, e.g. letting the user pick the Code Insight support to enable later, or > auto-detecting it based on file extensions present as files are added in. > Therefore, I suggest the top entry in the new project dialog should be a > "Generic Category" with an "Empty Project" entry. > If the given option is already present and I missed it I apologize for this > unnecessary ticket. -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4495) [Usability] Provide empty project template / importing existing code bases in more unusual languages is very confusing
[ https://issues.apache.org/jira/browse/NETBEANS-4495?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] ell1e updated NETBEANS-4495: Description: The current new project dialog to me has this odd feel of wanting to 1. make me use some pre-existing template (I don't, I already have a code base), and 2. make me use one of the few languages or things to write that NetBeans somehow thinks are what I should be coding. This approach seems to work somewhat directly against the recent merging of LSP support for letting people just code what and however they want, and against people who may want to use NetBeans for more obscure things in particular. I get that for Code Insight, you may want to know what type of project the user is working on. However the current rigid limited template list has a tendency to breaks down in corner cases, even if you ignore LSP/obscure languages: e,g, many languages might be mixed in one project, making anything like "Java Project" or whatever a bad match anyway. There have to be better ways, e.g. letting the user pick the Code Insight support to enable later, or auto-detecting it based on file extensions present as files are added in. Therefore, I suggest the top entry in the new project dialog should be a "Generic Category" with an "Empty Project" entry. If the given option is already present and I missed it I apologize for this unnecessary ticket. was: The current new project dialog to me has this odd feel of wanting to 1. make me use some pre-existing template (I don't, I already have a code base), and 2. make me use one of the few languages or things to write that NetBeans somehow thinks are what I should be coding in. This approach seems to work somewhat directly against the recent merging of LSP support for letting people just code what and however they want, and against people who may want to use NetBeans for more obscure things in particular. I get that for Code Insight, you may want to know what type of project the user is working on. However the current rigid limited template list has a tendency to breaks down in corner cases, even if you ignore LSP/obscure languages: e,g, many languages might be mixed in one project, making anything like "Java Project" or whatever a bad match anyway. There have to be better ways, e.g. letting the user pick the Code Insight support to enable later, or auto-detecting it based on file extensions present as files are added in. Therefore, I suggest the top entry in the new project dialog should be a "Generic Category" with an "Empty Project" entry. If the given option is already present and I missed it I apologize for this unnecessary ticket. > [Usability] Provide empty project template / importing existing code bases in > more unusual languages is very confusing > -- > > Key: NETBEANS-4495 > URL: https://issues.apache.org/jira/browse/NETBEANS-4495 > Project: NetBeans > Issue Type: Improvement > Components: projects - Generic Projects UI >Affects Versions: 12.0 >Reporter: ell1e >Priority: Major > > The current new project dialog to me has this odd feel of wanting to 1. make > me use some pre-existing template (I don't, I already have a code base), and > 2. make me use one of the few languages or things to write that NetBeans > somehow thinks are what I should be coding. This approach seems to work > somewhat directly against the recent merging of LSP support for letting > people just code what and however they want, and against people who may want > to use NetBeans for more obscure things in particular. > I get that for Code Insight, you may want to know what type of project the > user is working on. However the current rigid limited template list has a > tendency to breaks down in corner cases, even if you ignore LSP/obscure > languages: e,g, many languages might be mixed in one project, making anything > like "Java Project" or whatever a bad match anyway. There have to be better > ways, e.g. letting the user pick the Code Insight support to enable later, or > auto-detecting it based on file extensions present as files are added in. > Therefore, I suggest the top entry in the new project dialog should be a > "Generic Category" with an "Empty Project" entry. > If the given option is already present and I missed it I apologize for this > unnecessary ticket. -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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/
[jira] [Created] (NETBEANS-4496) [Usability] "Open Project" dialog shouldn't ever just do nothing when I hit "Open Project" confirm button
ell1e created NETBEANS-4496: --- Summary: [Usability] "Open Project" dialog shouldn't ever just do nothing when I hit "Open Project" confirm button Key: NETBEANS-4496 URL: https://issues.apache.org/jira/browse/NETBEANS-4496 Project: NetBeans Issue Type: Improvement Environment: Product Version: Apache NetBeans IDE 12.0 Java: 11.0.7; OpenJDK 64-Bit Server VM 11.0.7+10 Runtime: OpenJDK Runtime Environment 11.0.7+10 System: Linux version 5.6.19-300.fc32.x86_64 running on amd64; UTF-8; en_US (nb) - Fedora 32 Reporter: ell1e Right now, when I browse to my git repo and choose that as a folder in the "Open Project" dialog, and I hit "Open Project" confirm button, it just does nothing. I assume this is because no recognized project file is detected, but it's not like NetBeans is telling me. I suggest that ideally, NetBeans should ask me if I am trying to import an existing project in an unknown format, and offer me as a shortcut to create a new NetBeans project in this folder consisting of the files already present. However, I think as a minimum, it should pop up any sort of message explaining why nothing is happening when I am clicking "Open Project". -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4495) [Usability] Provide empty project template / opening existing projects in more unusual languages is very confusing
[ https://issues.apache.org/jira/browse/NETBEANS-4495?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] ell1e updated NETBEANS-4495: Description: The current new project dialog to me has this odd feel of wanting to 1. make me use some pre-existing template (I don't, I already have a code base), and 2. make me use one of the few languages or things to write that NetBeans somehow thinks are what I should be coding in. This approach seems to work somewhat directly against the recent merging of LSP support for letting people just code what and however they want, and against people who may want to use NetBeans for more obscure things in particular. I get that for Code Insight, you may want to know what type of project the user is working on. However the current rigid limited template list has a tendency to breaks down in corner cases, even if you ignore LSP/obscure languages: e,g, many languages might be mixed in one project, making anything like "Java Project" or whatever a bad match anyway. There have to be better ways, e.g. letting the user pick the Code Insight support to enable later, or auto-detecting it based on file extensions present as files are added in. Therefore, I suggest the top entry in the new project dialog should be a "Generic Category" with an "Empty Project" entry. If the given option is already present and I missed it I apologize for this unnecessary ticket. was: The current new project dialog to me has this odd feel of wanting to 1. make me use some pre-existing template (I don't, I already have a code base), and 2. make me use one of the few languages or things to write that NetBeans somehow thinks are what I should be coding in. This approach seems to work somewhat directly against the recent merging of LSP support for letting people just code what and however they want, and against people who may want to use NetBeans for more obscure things in particular. I get that for Code Insight, you may want to know what type of project the user is working on. However the current rigid limited template list has a tendency to breaks down in corner cases, even if you ignore LSP/obscure languages: e,g, many languages might be mixed in one project, making anything like "Java Project" or whatever a bad match anyway. Therefore, I suggest the top entry in the new project dialog should be a "Generic Category" with an "Empty Project" entry. If the given option is already present and I missed it I apologize for this unnecessary ticket. > [Usability] Provide empty project template / opening existing projects in > more unusual languages is very confusing > -- > > Key: NETBEANS-4495 > URL: https://issues.apache.org/jira/browse/NETBEANS-4495 > Project: NetBeans > Issue Type: Improvement > Components: projects - Generic Projects UI >Affects Versions: 12.0 >Reporter: ell1e >Priority: Major > > The current new project dialog to me has this odd feel of wanting to 1. make > me use some pre-existing template (I don't, I already have a code base), and > 2. make me use one of the few languages or things to write that NetBeans > somehow thinks are what I should be coding in. This approach seems to work > somewhat directly against the recent merging of LSP support for letting > people just code what and however they want, and against people who may want > to use NetBeans for more obscure things in particular. > I get that for Code Insight, you may want to know what type of project the > user is working on. However the current rigid limited template list has a > tendency to breaks down in corner cases, even if you ignore LSP/obscure > languages: e,g, many languages might be mixed in one project, making anything > like "Java Project" or whatever a bad match anyway. There have to be better > ways, e.g. letting the user pick the Code Insight support to enable later, or > auto-detecting it based on file extensions present as files are added in. > Therefore, I suggest the top entry in the new project dialog should be a > "Generic Category" with an "Empty Project" entry. > If the given option is already present and I missed it I apologize for this > unnecessary ticket. -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4495) [Usability] Provide empty project template / opening existing projects in more unusual languages is very confusing
[ https://issues.apache.org/jira/browse/NETBEANS-4495?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] ell1e updated NETBEANS-4495: Description: The current new project dialog to me has this odd feel of wanting to 1. make me use some pre-existing template (I don't, I already have a code base), and 2. make me use one of the few languages or things to write that NetBeans somehow thinks are what I should be coding in. This approach seems to work somewhat directly against the recent merging of LSP support for letting people just code what and however they want, and against people who may want to use NetBeans for more obscure things in particular. I get that for Code Insight, you may want to know what type of project the user is working on. However the current rigid limited template list has a tendency to breaks down in corner cases, even if you ignore LSP/obscure languages: e,g, many languages might be mixed in one project, making anything like "Java Project" or whatever a bad match anyway. Therefore, I suggest the top entry in the new project dialog should be a "Generic Category" with an "Empty Project" entry. If the given option is already present and I missed it I apologize for this unnecessary ticket. was: The current new project dialog to me has this odd feel of wanting to 1. making me use some pre-existing template (I don't, I already have a code base, thanks), and 2. making me use one of the few languages or things to write that NetBeans somehow thinks are what I should be coding in. This approach seems to work somewhat directly against the recent merging of LSP support for letting people just code what and however they want, and against people who may want to use NetBeans for more obscure things in particular. I get that for Code Insight, you may want to know what type of project the user is working on. However the current rigid limited template list has a tendency to breaks down in corner cases, even if you ignore LSP/obscure languages: e,g, many languages might be mixed in one project, making anything like "Java Project" or whatever a bad match anyway. Therefore, I suggest the top entry in the new project dialog should be a "Generic Category" with an "Empty Project" entry. If the given option is already present and I missed it I apologize for this unnecessary ticket. > [Usability] Provide empty project template / opening existing projects in > more unusual languages is very confusing > -- > > Key: NETBEANS-4495 > URL: https://issues.apache.org/jira/browse/NETBEANS-4495 > Project: NetBeans > Issue Type: Improvement > Components: projects - Generic Projects UI >Affects Versions: 12.0 >Reporter: ell1e >Priority: Major > > The current new project dialog to me has this odd feel of wanting to 1. make > me use some pre-existing template (I don't, I already have a code base), and > 2. make me use one of the few languages or things to write that NetBeans > somehow thinks are what I should be coding in. This approach seems to work > somewhat directly against the recent merging of LSP support for letting > people just code what and however they want, and against people who may want > to use NetBeans for more obscure things in particular. > I get that for Code Insight, you may want to know what type of project the > user is working on. However the current rigid limited template list has a > tendency to breaks down in corner cases, even if you ignore LSP/obscure > languages: e,g, many languages might be mixed in one project, making anything > like "Java Project" or whatever a bad match anyway. > Therefore, I suggest the top entry in the new project dialog should be a > "Generic Category" with an "Empty Project" entry. > If the given option is already present and I missed it I apologize for this > unnecessary ticket. -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4495) [Usability] Provide empty project template / opening existing projects in more unusual languages is very confusing
[ https://issues.apache.org/jira/browse/NETBEANS-4495?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] ell1e updated NETBEANS-4495: Description: The current new project dialog to me has this odd feel of wanting to 1. making me use some pre-existing template (I don't, I already have a code base, thanks), and 2. making me use one of the few languages or things to write that NetBeans somehow thinks are what I should be coding in. This approach seems to work somewhat directly against the recent merging of LSP support for letting people just code what and however they want, and against people who may want to use NetBeans for more obscure things in particular. I get that for Code Insight, you may want to know what type of project the user is working on. However the current rigid limited template list has a tendency to breaks down in corner cases, even if you ignore LSP/obscure languages: e,g, many languages might be mixed in one project, making anything like "Java Project" or whatever a bad match anyway. Therefore, I suggest the top entry in the new project dialog should be a "Generic Category" with an "Empty Project" entry. If the given option is already present and I missed it I apologize for this unnecessary ticket. was: The current project dialog to me has this odd feel of wanting to 1. making me use some pre-existing template, and 2. making me use one of the few languages or things to write that NetBeans somehow thinks are what I should be coding in. This approach seems to work somewhat directly against the recent merging of LSP support for letting people just code what and however they want, and against people who may want to use NetBeans for more obscure things in particular. I get that for Code Insight, you may want to know what type of project the user is working on. However the current rigid limited template list has a tendency to breaks down in corner cases, even if you ignore LSP/obscure languages: e,g, many languages might be mixed in one project, making anything like "Java Project" or whatever a bad match anyway. Therefore, I suggest the top entry in the new project dialog should be a "Generic Category" with an "Empty Project" entry. If the given option is already present and I missed it I apologize for this unnecessary ticket. > [Usability] Provide empty project template / opening existing projects in > more unusual languages is very confusing > -- > > Key: NETBEANS-4495 > URL: https://issues.apache.org/jira/browse/NETBEANS-4495 > Project: NetBeans > Issue Type: Improvement > Components: projects - Generic Projects UI >Affects Versions: 12.0 >Reporter: ell1e >Priority: Major > > The current new project dialog to me has this odd feel of wanting to 1. > making me use some pre-existing template (I don't, I already have a code > base, thanks), and 2. making me use one of the few languages or things to > write that NetBeans somehow thinks are what I should be coding in. This > approach seems to work somewhat directly against the recent merging of LSP > support for letting people just code what and however they want, and against > people who may want to use NetBeans for more obscure things in particular. > I get that for Code Insight, you may want to know what type of project the > user is working on. However the current rigid limited template list has a > tendency to breaks down in corner cases, even if you ignore LSP/obscure > languages: e,g, many languages might be mixed in one project, making anything > like "Java Project" or whatever a bad match anyway. > Therefore, I suggest the top entry in the new project dialog should be a > "Generic Category" with an "Empty Project" entry. > If the given option is already present and I missed it I apologize for this > unnecessary ticket. -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4495) [Usability] Provide empty project template / opening existing projects in more unusual languages is very confusing
ell1e created NETBEANS-4495: --- Summary: [Usability] Provide empty project template / opening existing projects in more unusual languages is very confusing Key: NETBEANS-4495 URL: https://issues.apache.org/jira/browse/NETBEANS-4495 Project: NetBeans Issue Type: Improvement Components: projects - Generic Projects UI Affects Versions: 12.0 Reporter: ell1e The current project dialog to me has this odd feel of wanting to 1. making me use some pre-existing template, and 2. making me use one of the few languages or things to write that NetBeans somehow thinks are what I should be coding in. This approach seems to work somewhat directly against the recent merging of LSP support for letting people just code what and however they want, and against people who may want to use NetBeans for more obscure things in particular. I get that for Code Insight, you may want to know what type of project the user is working on. However the current rigid limited template list has a tendency to breaks down in corner cases, even if you ignore LSP/obscure languages: e,g, many languages might be mixed in one project, making anything like "Java Project" or whatever a bad match anyway. Therefore, I suggest the top entry in the new project dialog should be a "Generic Category" with an "Empty Project" entry. If the given option is already present and I missed it I apologize for this unnecessary ticket. -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-180) Please support the Language Server Protocol
[ https://issues.apache.org/jira/browse/NETBEANS-180?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17143304#comment-17143304 ] Borwe commented on NETBEANS-180: So the GUI actually works for adding language servers? can one elaborate how somebody can go about this? the example from the blogs appeared to show one needed to code a module for install.:) > Please support the Language Server Protocol > --- > > Key: NETBEANS-180 > URL: https://issues.apache.org/jira/browse/NETBEANS-180 > Project: NetBeans > Issue Type: New Feature > Components: editor - Lexer, editor - Other, editor - Parsing & > Indexing >Affects Versions: Next >Reporter: Christian Lenz >Assignee: Jan Lahoda >Priority: Major > Attachments: Screenshot from 2020-06-23 17-10-35.png, screen.jpg > > > As you can see it here: > https://code.visualstudio.com/blogs/2016/06/27/common-language-protocol and > here: https://github.com/Microsoft/language-server-protocol this stuff gets > very hot these days. It's about to have a commong language server, which > handles the language by them self and will send you errors, warnings, code > completion and many more without creating a new language support into the > IDE. This is very cool, so for netbeans it would be possible only to create > file templates and projects, not more, the rest will do the commong language > server protocol. > Cheers > Chris -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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: Move macOS tests to GitHub action
This is an automated email from the ASF dual-hosted git repository. hectorespert 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 3dccfed Move macOS tests to GitHub action new 0636a9e Merge pull request #2180 from hectorespert/github_macos_action 3dccfed is described below commit 3dccfed705d19d1ed1ca0eb2550da911d9cc210d Author: Hector Espert AuthorDate: Mon Jun 8 20:39:31 2020 +0200 Move macOS tests to GitHub action --- .github/workflows/main.yml | 27 +++ .travis.yml| 23 --- 2 files changed, 27 insertions(+), 23 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f2e107f..10f0c43 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -98,3 +98,30 @@ jobs: - name: Test Netbeans Build System run: ant -Dcluster.config=basic localtest + + macos: +name: MacOS build +runs-on: macos-10.15 +steps: + - uses: actions/checkout@v2 + + - uses: actions/cache@v2 +with: + path: | +~/.hgexternalcache +~/Library/Caches/Homebrew + key: ${{ runner.os }}-${{ hashFiles('**/external/binaries-list') }} + restore-keys: ${{ runner.os }}- + + - run: brew install ant + + - name: Clean +run: ant clean + + - name: Build +run: ant build + + - name: Test +run: | + ant -f platform/masterfs.macosx test + ant -f platform/core.network test diff --git a/.travis.yml b/.travis.yml index afdce8f..f7350fe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -714,26 +714,3 @@ matrix: - ant $OPTS build script: - nbbuild/travis/scripting.sh - -- name: MacOS tests - language: minimal - os: osx - osx_image: xcode10.1 - addons: -homebrew: - packages: -- openjdk@11 -- ant - update: true - env: -- OPTS="-silent -Dcluster.config=platform -Dpermit.jdk9.builds=true -Djavac.compilerargs=-nowarn -Dbuild.compiler.deprecation=false -Dtest-unit-sys-prop.ignore.random.failures=true -Dvanilla.javac.exists=true" - install: -- sudo ln -sfn /usr/local/opt/openjdk@11/libexec/openjdk.jdk /Library/Java/JavaVirtualMachines/openjdk-11.jdk -- export PATH="/usr/local/opt/openjdk@11/bin:$PATH" -- export JAVA_HOME=`/usr/libexec/java_home -v 11` - before_script: -- ant $OPTS clean -- ant $OPTS build - script: -- ant $OPTS -f platform/masterfs.macosx test -- ant $OPTS -f platform/core.network test - 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-mavenutils-nbm-maven-plugin] branch master updated: Fixes errors when compiling with recent JDKS
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-mavenutils-nbm-maven-plugin.git The following commit(s) were added to refs/heads/master by this push: new d09e2f6 Fixes errors when compiling with recent JDKS new a69e128 Merge pull request #11 from EnricoScantamburlo/made_it_work_with_recent_jdk d09e2f6 is described below commit d09e2f6d918e82388451522e0b14e7fb4cb3b750 Author: Enrico Scantamburlo AuthorDate: Sun Jun 21 01:05:58 2020 +0200 Fixes errors when compiling with recent JDKS Maven 3.0.5 does not work because it fails to dowload thru HTTP when HTTPS is now required Added a forced cast to Classloader to avoid ambigous method call and made it compile --- pom.xml| 8 ++--- .../netbeans/nbm/CreateNetBeansFileStructure.java | 39 +++--- 2 files changed, 9 insertions(+), 38 deletions(-) diff --git a/pom.xml b/pom.xml index 6ef2230..9007571 100644 --- a/pom.xml +++ b/pom.xml @@ -41,7 +41,7 @@ under the License. https://issues.apache.org/jira/browse/NETBEANSINFRA -3.0.5 +3.6.3 @@ -62,7 +62,7 @@ under the License. org.apache.maven.plugins maven-plugin-plugin -3.5 +3.6.0 true @@ -118,8 +118,8 @@ under the License. org.apache.maven.plugins maven-compiler-plugin -1.7 -1.7 +1.8 +1.8 diff --git a/src/main/java/org/apache/netbeans/nbm/CreateNetBeansFileStructure.java b/src/main/java/org/apache/netbeans/nbm/CreateNetBeansFileStructure.java index 9d33cc6..9a3d230 100644 --- a/src/main/java/org/apache/netbeans/nbm/CreateNetBeansFileStructure.java +++ b/src/main/java/org/apache/netbeans/nbm/CreateNetBeansFileStructure.java @@ -21,8 +21,6 @@ package org.apache.netbeans.nbm; import java.io.BufferedOutputStream; import java.io.File; -import java.io.FileInputStream; -import java.io.FileOutputStream; import java.io.IOException; import java.io.PrintWriter; import java.lang.reflect.Field; @@ -40,13 +38,11 @@ import java.util.Map; import java.util.jar.Attributes; import java.util.jar.JarFile; import java.util.jar.JarInputStream; -import java.util.jar.JarOutputStream; import java.util.jar.Manifest; import java.util.logging.Level; import java.util.logging.Logger; import org.apache.maven.artifact.Artifact; import org.apache.maven.artifact.repository.layout.DefaultRepositoryLayout; -//import org.apache.maven.artifact.factory.ArtifactFactory; import org.apache.maven.execution.MavenSession; import org.apache.maven.model.Resource; import org.apache.maven.plugin.MojoExecutionException; @@ -301,8 +297,7 @@ public abstract class CreateNetBeansFileStructure a.putValue( "Class-Path", classPath ); a.remove( new Attributes.Name( "Maven-Class-Path" ) ); -try ( FileSystem fs = FileSystems.newFileSystem( moduleFile.toPath(), null ) ) -{ +try (FileSystem fs = FileSystems.newFileSystem(moduleFile.toPath(), (ClassLoader) null)) { try ( BufferedOutputStream mfWriter = new BufferedOutputStream( Files.newOutputStream( fs.getPath( JarFile.MANIFEST_NAME ) ) ) ) { m.write( mfWriter ); @@ -354,15 +349,9 @@ public abstract class CreateNetBeansFileStructure { String name = target.getName(); getLog().info( "Using *.external replacement for " + name ); -PrintWriter external = new PrintWriter( new File( targetDir, name + ".external" ), "UTF-8" ); -try -{ +try (PrintWriter external = new PrintWriter(new File(targetDir, name + ".external"), "UTF-8")) { writeExternal( external, artifact ); } -finally -{ -external.close(); -} } } catch ( IOException ex ) @@ -488,7 +477,7 @@ public abstract class CreateNetBeansFileStructure "NBM resources defined in module descriptor are deprecated. Please configure NBM resources in plugin configuration." ); Copy cp = (Copy) antProject.createTask( "copy" ); cp.setTodir( clusterDir ); -HashMap> customPaths = new HashMap>(); +HashMap>
[jira] [Created] (NETBEANS-4494) bug found
Riya Dhaked created NETBEANS-4494: - Summary: bug found Key: NETBEANS-4494 URL: https://issues.apache.org/jira/browse/NETBEANS-4494 Project: NetBeans Issue Type: Bug Components: apisupport - API docs, apisupport - Harness, cnd - Code Completion, cnd - Code Model, cnd - Debugger, cnd - Editor, cnd - Execution, cnd - Project Affects Versions: 11.3 Reporter: Riya Dhaked Fix For: 11.3 2020-06-23T18:00:35 1592915435249 6 300 18 SCREEN SIZE 1536 864 1 2020-06-23T18:00:35 1592915435250 7 700 18 IDE_STARTUP 2020-06-23T18:00:42 1592915442890 18 800 18 USG_LOOK_AND_FEEL Windows Windows 2020-06-23T18:01:05 1592915465435 221 800 32 MEMORY 4191207424 2020-06-23T18:01:38 1592915498982 245 800 17 UI_MAVEN_PROJECT_OPENED jar 2020-06-23T18:01:38 1592915498983 246 800 17 USG_PROJECT_OPEN_MAVEN jar 2020-06-23T18:02:05 1592915525340 252 700 32 Snapshot statistics 1592915522418 Samples 235 Average 12.276609361702127 Minimum 2.5675 Maximum 81.4388 Std. deviation 7.284257557757324 2020-06-23T18:02:06 1592915526556 441 700 17 UI_INIT_PROJECTS UI_INIT_PROJECTS org.netbeans.modules.project.ui.Bundle org.netbeans.modules.java.j2seproject.J2SEProject J2SEProject 4 2020-06-23T18:02:06 1592915526557 442 700 17 UI_INIT_PROJECTS UI_INIT_PROJECTS org.netbeans.modules.project.ui.Bundle org.netbeans.modules.maven.NbMavenProjectImpl NbMavenProjectImpl 1 2020-06-23T18:02:06 1592915526557 443 800 17 USG_PROJECT_OPEN org.netbeans.modules.java.j2seproject.J2SEProject 2020-06-23T18:02:06 1592915526557 444 800 17 USG_PROJECT_OPEN org.netbeans.modules.maven.NbMavenProjectImpl 2020-06-23T18:02:06 1592915526557 445 800 17 USG_PROJECT_OPEN org.netbeans.modules.java.j2seproject.J2SEProject 2020-06-23T18:02:06 1592915526557 446 800 17 USG_PROJECT_OPEN org.netbeans.modules.java.j2seproject.J2SEProject 2020-06-23T18:02:06 1592915526557 447 800 17 USG_PROJECT_OPEN org.netbeans.modules.java.j2seproject.J2SEProject 2020-06-23T18:02:07 1592915527306 455 800 30 INDEXING_STARTED INDEXING_STARTED org.netbeans.modules.parsing.impl.indexing.Bundle 0 2020-06-23T18:03:54 1592915634940 670 500 27 UI_ACTION_EDITOR java.awt.event.ActionEvent[ACTION_PERFORMED,cmd=Ctrl+A,when=1592915634799,modifiers=Ctrl] on javax.swing.JEditorPane[,0,-30183,5953x67274,layout=javax.swing.plaf.basic.BasicTextUI$UpdateHandler,alignmentX=0.0,alignmentY=0.0,border=javax.swing.plaf.basic.BasicBorders$MarginBorder@461e4048,flags=296,maximumSize=,minimumSize=,preferredSize=,caretColor=java.awt.Color[r=0,g=0,b=0],disabledTextColor=javax.swing.plaf.ColorUIResource[r=109,g=109,b=109],editable=false,margin=java.awt.Insets[top=0,left=0,bottom=0,right=0],selectedTextColor=javax.swing.plaf.ColorUIResource[r=255,g=255,b=255],selectionColor=javax.swing.plaf.ColorUIResource[r=0,g=120,b=215],kit=org.netbeans.modules.xml.text.syntax.XMLKit@45b064df,typeHandlers=] java.awt.event.ActionEvent[ACTION_PERFORMED,cmd=Ctrl+A,when=1592915634799,modifiers=Ctrl] on javax.swing.JEditorPane[,0,-30183,5953x67274,layout=javax.swing.plaf.basic.BasicTextUI$UpdateHandler,alignmentX=0.0,alignmentY=0.0,border=javax.swing.plaf.basic.BasicBorders$MarginBorder@461e4048,flags=296,maximumSize=,minimumSize=,preferredSize=,caretColor=java.awt.Color[r=0,g=0,b=0],disabledTextColor=javax.swing.plaf.ColorUIResource[r=109,g=109,b=109],editable=false,margin=java.awt.Insets[top=0,left=0,bottom=0,right=0],selectedTextColor=javax.swing.plaf.ColorUIResource[r=255,g=255,b=255],selectionColor=javax.swing.plaf.ColorUIResource[r=0,g=120,b=215],kit=org.netbeans.modules.xml.text.syntax.XMLKit@45b064df,typeHandlers=] org.netbeans.editor.BaseKit$SelectAllAction[select-all] org.netbeans.editor.BaseKit$SelectAllAction@1732507d select-all 2020-06-23T18:05:14 1592915714587 744 800 30 INDEXING_FINISHED INDEXING_FINISHED org.netbeans.modules.parsing.impl.indexing.Bundle 187279 java 240 61188 SpringBinary 231 238 TaskListIndexer 9 63 org.netbeans.modules.java.source.indexing.COSSynchronizingIndexer 9 1621 CopyResourcesIndexer 9 0 org-netbeans-modules-jumpto-file-FileIndexer 9 23 2020-06-23T18:13:34 1592916214882 745 500 27 UI_ACTION_EDITOR java.awt.event.ActionEvent[ACTION_PERFORMED,cmd=Ctrl+A,when=1592916214776,modifiers=Ctrl] on javax.swing.JEditorPane[,0,-66889,5953x67274,layout=javax.swing.plaf.basic.BasicTextUI$UpdateHandler,alignmentX=0.0,alignmentY=0.0,border=javax.swing.plaf.basic.BasicBorders$MarginBorder@461e4048,flags=296,maximumSize=,minimumSize=,preferredSize=,caretColor=java.awt.Color[r=0,g=0,b=0],disabledTextColor
[jira] [Commented] (NETBEANS-4490) "Could not add one or more tag libraries" when jsp file uses xml syntax
[ https://issues.apache.org/jira/browse/NETBEANS-4490?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17143067#comment-17143067 ] Nicola Isotta commented on NETBEANS-4490: - Backtetsted the project, 8.1 is the last working version. From 8.2 on the bug is present, just like NETBEANS-2277 > "Could not add one or more tag libraries" when jsp file uses xml syntax > --- > > Key: NETBEANS-4490 > URL: https://issues.apache.org/jira/browse/NETBEANS-4490 > Project: NetBeans > Issue Type: Bug > Components: javaee - JSP, javaee - Web Project >Affects Versions: 8.2, 12.0 >Reporter: Nicola Isotta >Priority: Major > Attachments: JSF12JSPBug.zip, bug.jpg > > > When a .jsp uses xml syntax, tld loading breaks. > Root cause seems to be PWC6132 / PWC6169 from jasper compiler. > !bug.jpg! Example project attached -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4490) "Could not add one or more tag libraries" when jsp file uses xml syntax
[ https://issues.apache.org/jira/browse/NETBEANS-4490?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Nicola Isotta updated NETBEANS-4490: Affects Version/s: 8.2 > "Could not add one or more tag libraries" when jsp file uses xml syntax > --- > > Key: NETBEANS-4490 > URL: https://issues.apache.org/jira/browse/NETBEANS-4490 > Project: NetBeans > Issue Type: Bug > Components: javaee - JSP, javaee - Web Project >Affects Versions: 8.2, 12.0 >Reporter: Nicola Isotta >Priority: Major > Attachments: JSF12JSPBug.zip, bug.jpg > > > When a .jsp uses xml syntax, tld loading breaks. > Root cause seems to be PWC6132 / PWC6169 from jasper compiler. > !bug.jpg! Example project attached -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4487) Unit tests for PHP Debugger fail on Windows
[ https://issues.apache.org/jira/browse/NETBEANS-4487?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tomáš Procházka resolved NETBEANS-4487. --- Fix Version/s: 12.1 Resolution: Fixed PR was merged. > Unit tests for PHP Debugger fail on Windows > --- > > Key: NETBEANS-4487 > URL: https://issues.apache.org/jira/browse/NETBEANS-4487 > Project: NetBeans > Issue Type: Bug > Components: php - Debugger >Affects Versions: 12.0 >Reporter: Tomáš Procházka >Assignee: Tomáš Procházka >Priority: Major > Labels: pull-request-available > Fix For: 12.1 > > Time Spent: 40m > Remaining Estimate: 0h > > Unit tests for PHP Debugger module fail on Windows. > Run {{ant -f php/php.dbgp test}} on Windows and it results in build failure. -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4483) Unit tests for Nette Tester fail
[ https://issues.apache.org/jira/browse/NETBEANS-4483?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tomáš Procházka resolved NETBEANS-4483. --- Fix Version/s: 12.1 Resolution: Fixed PR was merged. > Unit tests for Nette Tester fail > > > Key: NETBEANS-4483 > URL: https://issues.apache.org/jira/browse/NETBEANS-4483 > Project: NetBeans > Issue Type: Bug > Components: php - Nette >Affects Versions: 12.0 >Reporter: Tomáš Procházka >Assignee: Tomáš Procházka >Priority: Major > Labels: pull-request-available > Fix For: 12.1 > > Time Spent: 3h 10m > Remaining Estimate: 0h > > Unit tests for Nette Tester module fail. > Run {{ant -f php/php.nette.tester}} and it results in build failure. -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4480) Unit tests for PHP Project fail on Windows
[ https://issues.apache.org/jira/browse/NETBEANS-4480?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tomáš Procházka resolved NETBEANS-4480. --- Fix Version/s: 12.1 Resolution: Fixed PR was merged. > Unit tests for PHP Project fail on Windows > -- > > Key: NETBEANS-4480 > URL: https://issues.apache.org/jira/browse/NETBEANS-4480 > Project: NetBeans > Issue Type: Bug > Components: php - Project >Affects Versions: 12.0 >Reporter: Tomáš Procházka >Assignee: Tomáš Procházka >Priority: Major > Labels: pull-request-available > Fix For: 12.1 > > Time Spent: 0.5h > Remaining Estimate: 0h > > Unit tests for PHP Project module fail on Windows. > Run {{ant -f php/php.project test}} on Windows and it results in build > failure. -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4479) Unit tests for PHPUnit fail on Windows
[ https://issues.apache.org/jira/browse/NETBEANS-4479?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tomáš Procházka resolved NETBEANS-4479. --- Fix Version/s: 12.1 Resolution: Fixed PR was merged. > Unit tests for PHPUnit fail on Windows > -- > > Key: NETBEANS-4479 > URL: https://issues.apache.org/jira/browse/NETBEANS-4479 > Project: NetBeans > Issue Type: Bug > Components: php - PHPUnit >Affects Versions: 12.0 >Reporter: Tomáš Procházka >Assignee: Tomáš Procházka >Priority: Major > Labels: pull-request-available > Fix For: 12.1 > > Time Spent: 40m > Remaining Estimate: 0h > > Unit tests for PHPUnit module fail on Windows. > Run {{ant -f php/php.phpunit test}} on Windows and it results in build > failure. -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-180) Please support the Language Server Protocol
[ https://issues.apache.org/jira/browse/NETBEANS-180?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17143032#comment-17143032 ] Christian Lenz commented on NETBEANS-180: - The problem is, that the ergonomics module needs to be loaded and that is happening, when you open a project first. Then you can find the editor tab. It is really not nice but unfortunately it is as it is now. So in short, open a project and you should see the editor tab. This is was Jan told me back in the days, when I wanted to test the language server gui out. > Please support the Language Server Protocol > --- > > Key: NETBEANS-180 > URL: https://issues.apache.org/jira/browse/NETBEANS-180 > Project: NetBeans > Issue Type: New Feature > Components: editor - Lexer, editor - Other, editor - Parsing & > Indexing >Affects Versions: Next >Reporter: Christian Lenz >Assignee: Jan Lahoda >Priority: Major > Attachments: Screenshot from 2020-06-23 17-10-35.png, screen.jpg > > > As you can see it here: > https://code.visualstudio.com/blogs/2016/06/27/common-language-protocol and > here: https://github.com/Microsoft/language-server-protocol this stuff gets > very hot these days. It's about to have a commong language server, which > handles the language by them self and will send you errors, warnings, code > completion and many more without creating a new language support into the > IDE. This is very cool, so for netbeans it would be possible only to create > file templates and projects, not more, the rest will do the commong language > server protocol. > Cheers > Chris -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-180) Please support the Language Server Protocol
[ https://issues.apache.org/jira/browse/NETBEANS-180?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17143026#comment-17143026 ] Aurélien Pupier edited comment on NETBEANS-180 at 6/23/20, 3:13 PM: Can you precise what needs to be activated/where the _editor_ option is available? I installed Apache Netbeans IDE 12.0 following ll default steps and i'm missing several items compared to your screenshot. Especially, the "Editor" tab. I opened with Tools -> Options !Screenshot from 2020-06-23 17-10-35.png! EDIT: "just" need to wait that there is a lag and a popup asking to install JavaFX was (Author: apupier): Can you precise what needs to be activated/where the _editor_ option is available? I installed Apache Netbeans IDE 12.0 following ll default steps and i'm missing several items compared to your screenshot. Especially, the "Editor" tab. I opened with Tools -> Options !Screenshot from 2020-06-23 17-10-35.png! > Please support the Language Server Protocol > --- > > Key: NETBEANS-180 > URL: https://issues.apache.org/jira/browse/NETBEANS-180 > Project: NetBeans > Issue Type: New Feature > Components: editor - Lexer, editor - Other, editor - Parsing & > Indexing >Affects Versions: Next >Reporter: Christian Lenz >Assignee: Jan Lahoda >Priority: Major > Attachments: Screenshot from 2020-06-23 17-10-35.png, screen.jpg > > > As you can see it here: > https://code.visualstudio.com/blogs/2016/06/27/common-language-protocol and > here: https://github.com/Microsoft/language-server-protocol this stuff gets > very hot these days. It's about to have a commong language server, which > handles the language by them self and will send you errors, warnings, code > completion and many more without creating a new language support into the > IDE. This is very cool, so for netbeans it would be possible only to create > file templates and projects, not more, the rest will do the commong language > server protocol. > Cheers > Chris -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-180) Please support the Language Server Protocol
[ https://issues.apache.org/jira/browse/NETBEANS-180?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17143026#comment-17143026 ] Aurélien Pupier commented on NETBEANS-180: -- Can you precise what needs to be activated/where the _editor_ option is available? I installed Apache Netbeans IDE 12.0 following ll default steps and i'm missing several items compared to your screenshot. Especially, the "Editor" tab. I opened with Tools -> Options !Screenshot from 2020-06-23 17-10-35.png! > Please support the Language Server Protocol > --- > > Key: NETBEANS-180 > URL: https://issues.apache.org/jira/browse/NETBEANS-180 > Project: NetBeans > Issue Type: New Feature > Components: editor - Lexer, editor - Other, editor - Parsing & > Indexing >Affects Versions: Next >Reporter: Christian Lenz >Assignee: Jan Lahoda >Priority: Major > Attachments: Screenshot from 2020-06-23 17-10-35.png, screen.jpg > > > As you can see it here: > https://code.visualstudio.com/blogs/2016/06/27/common-language-protocol and > here: https://github.com/Microsoft/language-server-protocol this stuff gets > very hot these days. It's about to have a commong language server, which > handles the language by them self and will send you errors, warnings, code > completion and many more without creating a new language support into the > IDE. This is very cool, so for netbeans it would be possible only to create > file templates and projects, not more, the rest will do the commong language > server protocol. > Cheers > Chris -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-180) Please support the Language Server Protocol
[ https://issues.apache.org/jira/browse/NETBEANS-180?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Aurélien Pupier updated NETBEANS-180: - Attachment: Screenshot from 2020-06-23 17-10-35.png > Please support the Language Server Protocol > --- > > Key: NETBEANS-180 > URL: https://issues.apache.org/jira/browse/NETBEANS-180 > Project: NetBeans > Issue Type: New Feature > Components: editor - Lexer, editor - Other, editor - Parsing & > Indexing >Affects Versions: Next >Reporter: Christian Lenz >Assignee: Jan Lahoda >Priority: Major > Attachments: Screenshot from 2020-06-23 17-10-35.png, screen.jpg > > > As you can see it here: > https://code.visualstudio.com/blogs/2016/06/27/common-language-protocol and > here: https://github.com/Microsoft/language-server-protocol this stuff gets > very hot these days. It's about to have a commong language server, which > handles the language by them self and will send you errors, warnings, code > completion and many more without creating a new language support into the > IDE. This is very cool, so for netbeans it would be possible only to create > file templates and projects, not more, the rest will do the commong language > server protocol. > Cheers > Chris -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-180) Please support the Language Server Protocol
[ https://issues.apache.org/jira/browse/NETBEANS-180?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17143011#comment-17143011 ] Christian Lenz commented on NETBEANS-180: - FYI, it is there since 11.3 :). Maybe a bit earlier but definitely earlier than 12. > Please support the Language Server Protocol > --- > > Key: NETBEANS-180 > URL: https://issues.apache.org/jira/browse/NETBEANS-180 > Project: NetBeans > Issue Type: New Feature > Components: editor - Lexer, editor - Other, editor - Parsing & > Indexing >Affects Versions: Next >Reporter: Christian Lenz >Assignee: Jan Lahoda >Priority: Major > Attachments: screen.jpg > > > As you can see it here: > https://code.visualstudio.com/blogs/2016/06/27/common-language-protocol and > here: https://github.com/Microsoft/language-server-protocol this stuff gets > very hot these days. It's about to have a commong language server, which > handles the language by them self and will send you errors, warnings, code > completion and many more without creating a new language support into the > IDE. This is very cool, so for netbeans it would be possible only to create > file templates and projects, not more, the rest will do the commong language > server protocol. > Cheers > Chris -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-tools] branch master updated (41a6277 -> 9c81b36)
This is an automated email from the ASF dual-hosted git repository. jkovalsky pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/netbeans-tools.git. from 41a6277 Configuration contains core application logic so realign it with implementation new 86a330d Old URLs in notifications replaced with new PP3 domain secure URLs. new ae8d20e Old URLs in notifications replaced with new PP3 domain secure URLs. new c76d8a5 Old URLs in notifications replaced with new PP3 domain secure URLs. new bbb8c7a NoGo message updated to not confuse plugin developers. new 9c81b36 Merge pull request #33 from jkovalsky/jkovalsky/newPP3Domain The 144 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. Summary of changes: .../src/Application/Controller/VerificationController.php | 10 -- .../Application/src/Application/Entity/VerificationRequest.php | 2 +- 2 files changed, 5 insertions(+), 7 deletions(-) - 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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate
[ https://issues.apache.org/jira/browse/NETBEANS-4468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17142806#comment-17142806 ] D Burbridge commented on NETBEANS-4468: --- There appear to be a number of reports on Jira all relating to the same root issue: "Hibernate tools version update?" (my own): https://issues.apache.org/jira/browse/NETBEANS-4096 "Resolve Hibernate Support": https://issues.apache.org/jira/browse/NETBEANS-2719 "Hibernate Plugin Addition": https://issues.apache.org/jira/browse/NETBEANS-2599 and, going back, to the original issue, "Remove Hibernate from Project due to GPL license": https://issues.apache.org/jira/browse/NETBEANS-171 So it sounds like there was a licensing problem with it rather than any technical reason for it being removed. Given that Hibernate integration is apparently so popular, is there any chance it might be reinstated? Particularly as it's a lawyer that's probably wanted, not a coder! (And if anyone's managed to find a workaround for installing the old Hibernate plugin, along with the Freemarker plugin if necessary, I'd be pleased to hear it:-)) > No dependent plugins are available at Apache NetBeans plugin portal for > Hibernate > - > > Key: NETBEANS-4468 > URL: https://issues.apache.org/jira/browse/NETBEANS-4468 > Project: NetBeans > Issue Type: Improvement > Components: javaee - Hibernate > Environment: Debain 10.4 Buster AMD 64-bits > openjdk 11.0.7 2020-04-14 LTS > Apache NetBeans 12.0 LTS >Reporter: Swapnil Sidram Nagtilak >Priority: Major > Labels: Debian > Attachments: error.png, hibernate plugin.png > > > In Apache NetBeans 12.0 LTS > When I'm trying to install Hibernate plugin it says : > *Some plugins require plugin Freemarker Integration to be installed* > *^The plugin Freemarker Integration is requested in implementation version > 238.^* > ^{color:#172b4d}*The following plugin is affected:*{color}^ > {color:#172b4d}*^Hibernate^* {color} > > {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* > plugin is not available. {color} > {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' > plugin portal*{color} > {color:#172b4d}*[FreeMarker support for > NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]* > but getting same error. > !error.png! > > {color:#172b4d}Please make them available on *Apache Plugin Portal*{color} -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate
[ https://issues.apache.org/jira/browse/NETBEANS-4468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17142770#comment-17142770 ] Geertjan Wielenga commented on NETBEANS-4468: - Great! > No dependent plugins are available at Apache NetBeans plugin portal for > Hibernate > - > > Key: NETBEANS-4468 > URL: https://issues.apache.org/jira/browse/NETBEANS-4468 > Project: NetBeans > Issue Type: Improvement > Components: javaee - Hibernate > Environment: Debain 10.4 Buster AMD 64-bits > openjdk 11.0.7 2020-04-14 LTS > Apache NetBeans 12.0 LTS >Reporter: Swapnil Sidram Nagtilak >Priority: Major > Labels: Debian > Attachments: error.png, hibernate plugin.png > > > In Apache NetBeans 12.0 LTS > When I'm trying to install Hibernate plugin it says : > *Some plugins require plugin Freemarker Integration to be installed* > *^The plugin Freemarker Integration is requested in implementation version > 238.^* > ^{color:#172b4d}*The following plugin is affected:*{color}^ > {color:#172b4d}*^Hibernate^* {color} > > {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* > plugin is not available. {color} > {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' > plugin portal*{color} > {color:#172b4d}*[FreeMarker support for > NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]* > but getting same error. > !error.png! > > {color:#172b4d}Please make them available on *Apache Plugin Portal*{color} -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate
[ https://issues.apache.org/jira/browse/NETBEANS-4468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17142769#comment-17142769 ] Swapnil Sidram Nagtilak commented on NETBEANS-4468: --- Thank you so much. I'll see netbeans.apache.org > No dependent plugins are available at Apache NetBeans plugin portal for > Hibernate > - > > Key: NETBEANS-4468 > URL: https://issues.apache.org/jira/browse/NETBEANS-4468 > Project: NetBeans > Issue Type: Improvement > Components: javaee - Hibernate > Environment: Debain 10.4 Buster AMD 64-bits > openjdk 11.0.7 2020-04-14 LTS > Apache NetBeans 12.0 LTS >Reporter: Swapnil Sidram Nagtilak >Priority: Major > Labels: Debian > Attachments: error.png, hibernate plugin.png > > > In Apache NetBeans 12.0 LTS > When I'm trying to install Hibernate plugin it says : > *Some plugins require plugin Freemarker Integration to be installed* > *^The plugin Freemarker Integration is requested in implementation version > 238.^* > ^{color:#172b4d}*The following plugin is affected:*{color}^ > {color:#172b4d}*^Hibernate^* {color} > > {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* > plugin is not available. {color} > {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' > plugin portal*{color} > {color:#172b4d}*[FreeMarker support for > NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]* > but getting same error. > !error.png! > > {color:#172b4d}Please make them available on *Apache Plugin Portal*{color} -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate
[ https://issues.apache.org/jira/browse/NETBEANS-4468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17142767#comment-17142767 ] Geertjan Wielenga commented on NETBEANS-4468: - If you’re missing Hibernate, join the users or dev mailing list and start a new thread on that topic and work with others in the community to get Hibernate ready for 12.0. > No dependent plugins are available at Apache NetBeans plugin portal for > Hibernate > - > > Key: NETBEANS-4468 > URL: https://issues.apache.org/jira/browse/NETBEANS-4468 > Project: NetBeans > Issue Type: Improvement > Components: javaee - Hibernate > Environment: Debain 10.4 Buster AMD 64-bits > openjdk 11.0.7 2020-04-14 LTS > Apache NetBeans 12.0 LTS >Reporter: Swapnil Sidram Nagtilak >Priority: Major > Labels: Debian > Attachments: error.png, hibernate plugin.png > > > In Apache NetBeans 12.0 LTS > When I'm trying to install Hibernate plugin it says : > *Some plugins require plugin Freemarker Integration to be installed* > *^The plugin Freemarker Integration is requested in implementation version > 238.^* > ^{color:#172b4d}*The following plugin is affected:*{color}^ > {color:#172b4d}*^Hibernate^* {color} > > {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* > plugin is not available. {color} > {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' > plugin portal*{color} > {color:#172b4d}*[FreeMarker support for > NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]* > but getting same error. > !error.png! > > {color:#172b4d}Please make them available on *Apache Plugin Portal*{color} -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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] [Issue Comment Deleted] (NETBEANS-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate
[ https://issues.apache.org/jira/browse/NETBEANS-4468?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Swapnil Sidram Nagtilak updated NETBEANS-4468: -- Comment: was deleted (was: May I know when important plugins are gonna available at Apache Plugin Portal?) > No dependent plugins are available at Apache NetBeans plugin portal for > Hibernate > - > > Key: NETBEANS-4468 > URL: https://issues.apache.org/jira/browse/NETBEANS-4468 > Project: NetBeans > Issue Type: Improvement > Components: javaee - Hibernate > Environment: Debain 10.4 Buster AMD 64-bits > openjdk 11.0.7 2020-04-14 LTS > Apache NetBeans 12.0 LTS >Reporter: Swapnil Sidram Nagtilak >Priority: Major > Labels: Debian > Attachments: error.png, hibernate plugin.png > > > In Apache NetBeans 12.0 LTS > When I'm trying to install Hibernate plugin it says : > *Some plugins require plugin Freemarker Integration to be installed* > *^The plugin Freemarker Integration is requested in implementation version > 238.^* > ^{color:#172b4d}*The following plugin is affected:*{color}^ > {color:#172b4d}*^Hibernate^* {color} > > {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* > plugin is not available. {color} > {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' > plugin portal*{color} > {color:#172b4d}*[FreeMarker support for > NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]* > but getting same error. > !error.png! > > {color:#172b4d}Please make them available on *Apache Plugin Portal*{color} -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate
[ https://issues.apache.org/jira/browse/NETBEANS-4468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17142763#comment-17142763 ] Geertjan Wielenga commented on NETBEANS-4468: - What are “important plugins”? I think the first point is that you are part of the community. The community isn’t out there. It is you. If you are missing a plugin, join the mailing list (see netbeans.apache.org) and work with others in the community to make it happen. > No dependent plugins are available at Apache NetBeans plugin portal for > Hibernate > - > > Key: NETBEANS-4468 > URL: https://issues.apache.org/jira/browse/NETBEANS-4468 > Project: NetBeans > Issue Type: Improvement > Components: javaee - Hibernate > Environment: Debain 10.4 Buster AMD 64-bits > openjdk 11.0.7 2020-04-14 LTS > Apache NetBeans 12.0 LTS >Reporter: Swapnil Sidram Nagtilak >Priority: Major > Labels: Debian > Attachments: error.png, hibernate plugin.png > > > In Apache NetBeans 12.0 LTS > When I'm trying to install Hibernate plugin it says : > *Some plugins require plugin Freemarker Integration to be installed* > *^The plugin Freemarker Integration is requested in implementation version > 238.^* > ^{color:#172b4d}*The following plugin is affected:*{color}^ > {color:#172b4d}*^Hibernate^* {color} > > {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* > plugin is not available. {color} > {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' > plugin portal*{color} > {color:#172b4d}*[FreeMarker support for > NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]* > but getting same error. > !error.png! > > {color:#172b4d}Please make them available on *Apache Plugin Portal*{color} -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate
[ https://issues.apache.org/jira/browse/NETBEANS-4468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17142762#comment-17142762 ] Swapnil Sidram Nagtilak commented on NETBEANS-4468: --- Yes, Hibernate is not available there. > No dependent plugins are available at Apache NetBeans plugin portal for > Hibernate > - > > Key: NETBEANS-4468 > URL: https://issues.apache.org/jira/browse/NETBEANS-4468 > Project: NetBeans > Issue Type: Improvement > Components: javaee - Hibernate > Environment: Debain 10.4 Buster AMD 64-bits > openjdk 11.0.7 2020-04-14 LTS > Apache NetBeans 12.0 LTS >Reporter: Swapnil Sidram Nagtilak >Priority: Major > Labels: Debian > Attachments: error.png, hibernate plugin.png > > > In Apache NetBeans 12.0 LTS > When I'm trying to install Hibernate plugin it says : > *Some plugins require plugin Freemarker Integration to be installed* > *^The plugin Freemarker Integration is requested in implementation version > 238.^* > ^{color:#172b4d}*The following plugin is affected:*{color}^ > {color:#172b4d}*^Hibernate^* {color} > > {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* > plugin is not available. {color} > {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' > plugin portal*{color} > {color:#172b4d}*[FreeMarker support for > NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]* > but getting same error. > !error.png! > > {color:#172b4d}Please make them available on *Apache Plugin Portal*{color} -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate
[ https://issues.apache.org/jira/browse/NETBEANS-4468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17142761#comment-17142761 ] Swapnil Sidram Nagtilak commented on NETBEANS-4468: --- May I know when important plugins are gonna available at Apache Plugin Portal? > No dependent plugins are available at Apache NetBeans plugin portal for > Hibernate > - > > Key: NETBEANS-4468 > URL: https://issues.apache.org/jira/browse/NETBEANS-4468 > Project: NetBeans > Issue Type: Improvement > Components: javaee - Hibernate > Environment: Debain 10.4 Buster AMD 64-bits > openjdk 11.0.7 2020-04-14 LTS > Apache NetBeans 12.0 LTS >Reporter: Swapnil Sidram Nagtilak >Priority: Major > Labels: Debian > Attachments: error.png, hibernate plugin.png > > > In Apache NetBeans 12.0 LTS > When I'm trying to install Hibernate plugin it says : > *Some plugins require plugin Freemarker Integration to be installed* > *^The plugin Freemarker Integration is requested in implementation version > 238.^* > ^{color:#172b4d}*The following plugin is affected:*{color}^ > {color:#172b4d}*^Hibernate^* {color} > > {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* > plugin is not available. {color} > {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' > plugin portal*{color} > {color:#172b4d}*[FreeMarker support for > NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]* > but getting same error. > !error.png! > > {color:#172b4d}Please make them available on *Apache Plugin Portal*{color} -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate
[ https://issues.apache.org/jira/browse/NETBEANS-4468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17142760#comment-17142760 ] Geertjan Wielenga commented on NETBEANS-4468: - Plugins are not available at the Apache NetBeans Plugin Portal? > No dependent plugins are available at Apache NetBeans plugin portal for > Hibernate > - > > Key: NETBEANS-4468 > URL: https://issues.apache.org/jira/browse/NETBEANS-4468 > Project: NetBeans > Issue Type: Improvement > Components: javaee - Hibernate > Environment: Debain 10.4 Buster AMD 64-bits > openjdk 11.0.7 2020-04-14 LTS > Apache NetBeans 12.0 LTS >Reporter: Swapnil Sidram Nagtilak >Priority: Major > Labels: Debian > Attachments: error.png, hibernate plugin.png > > > In Apache NetBeans 12.0 LTS > When I'm trying to install Hibernate plugin it says : > *Some plugins require plugin Freemarker Integration to be installed* > *^The plugin Freemarker Integration is requested in implementation version > 238.^* > ^{color:#172b4d}*The following plugin is affected:*{color}^ > {color:#172b4d}*^Hibernate^* {color} > > {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* > plugin is not available. {color} > {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' > plugin portal*{color} > {color:#172b4d}*[FreeMarker support for > NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]* > but getting same error. > !error.png! > > {color:#172b4d}Please make them available on *Apache Plugin Portal*{color} -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate
[ https://issues.apache.org/jira/browse/NETBEANS-4468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17142758#comment-17142758 ] Swapnil Sidram Nagtilak commented on NETBEANS-4468: --- I'm not expecting that but I'm not able to use Hibernate in NetBeans 12.0. So I've created this issue. I expect at least working modules in latest versions. Also plugins are not available at Apache NetBeans Plugin Portal. I expect community consider this issue and make them available soon. Thank you for you attention. > No dependent plugins are available at Apache NetBeans plugin portal for > Hibernate > - > > Key: NETBEANS-4468 > URL: https://issues.apache.org/jira/browse/NETBEANS-4468 > Project: NetBeans > Issue Type: Improvement > Components: javaee - Hibernate > Environment: Debain 10.4 Buster AMD 64-bits > openjdk 11.0.7 2020-04-14 LTS > Apache NetBeans 12.0 LTS >Reporter: Swapnil Sidram Nagtilak >Priority: Major > Labels: Debian > Attachments: error.png, hibernate plugin.png > > > In Apache NetBeans 12.0 LTS > When I'm trying to install Hibernate plugin it says : > *Some plugins require plugin Freemarker Integration to be installed* > *^The plugin Freemarker Integration is requested in implementation version > 238.^* > ^{color:#172b4d}*The following plugin is affected:*{color}^ > {color:#172b4d}*^Hibernate^* {color} > > {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* > plugin is not available. {color} > {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' > plugin portal*{color} > {color:#172b4d}*[FreeMarker support for > NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]* > but getting same error. > !error.png! > > {color:#172b4d}Please make them available on *Apache Plugin Portal*{color} -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-2970) Lombok not working correctly in NetBeans 11.0 and 11.1
[ https://issues.apache.org/jira/browse/NETBEANS-2970?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17142756#comment-17142756 ] Geertjan Wielenga commented on NETBEANS-2970: - It may be related to the version of Lombok you’re using. > Lombok not working correctly in NetBeans 11.0 and 11.1 > -- > > Key: NETBEANS-2970 > URL: https://issues.apache.org/jira/browse/NETBEANS-2970 > Project: NetBeans > Issue Type: Bug >Affects Versions: 11.0, 12.0, 11.1, 11.2, 11.3 >Reporter: Przemysław Sadowski >Priority: Major > Attachments: LombokTest.zip, log.zip, log_20191104.zip, log_v2.zip > > > Many classes using Lombok in project I'm working on at work fail to be > correctly processed by NetBeans. I narrowed it down to cases in attached > exaple project. > When using Lombok 1.6.22, builder methods are not visible in editor making a > lot of error notes in editor. > When using Lombok 1.8.8, builder method works but there are errors with > parsing some classes, example: > {code:java} > @Builder > public class SomeValueClass { > @Singular > private Map values; > }{code} > NetBeans fails with exception when trying to parse this class, and this class > is not visible as class to NetBeans (can't open it using "Go To Type" for > example). if I change byte[] to any non-primitive type it works. Using > primitive types (byte, boolean, int) fails. > I'm attaching content of log directory from NetBeans, with bug related dump > and exception in it. > Attached example project seem to be working correctly in NetBeans 8.2. -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate
[ https://issues.apache.org/jira/browse/NETBEANS-4468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17142754#comment-17142754 ] Geertjan Wielenga commented on NETBEANS-4468: - Are you saying all the plugins from the 8.2 plugin portal should work in 12.0? > No dependent plugins are available at Apache NetBeans plugin portal for > Hibernate > - > > Key: NETBEANS-4468 > URL: https://issues.apache.org/jira/browse/NETBEANS-4468 > Project: NetBeans > Issue Type: Improvement > Components: javaee - Hibernate > Environment: Debain 10.4 Buster AMD 64-bits > openjdk 11.0.7 2020-04-14 LTS > Apache NetBeans 12.0 LTS >Reporter: Swapnil Sidram Nagtilak >Priority: Major > Labels: Debian > Attachments: error.png, hibernate plugin.png > > > In Apache NetBeans 12.0 LTS > When I'm trying to install Hibernate plugin it says : > *Some plugins require plugin Freemarker Integration to be installed* > *^The plugin Freemarker Integration is requested in implementation version > 238.^* > ^{color:#172b4d}*The following plugin is affected:*{color}^ > {color:#172b4d}*^Hibernate^* {color} > > {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* > plugin is not available. {color} > {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' > plugin portal*{color} > {color:#172b4d}*[FreeMarker support for > NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]* > but getting same error. > !error.png! > > {color:#172b4d}Please make them available on *Apache Plugin Portal*{color} -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate
[ https://issues.apache.org/jira/browse/NETBEANS-4468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17142746#comment-17142746 ] Swapnil Sidram Nagtilak edited comment on NETBEANS-4468 at 6/23/20, 8:49 AM: - Thank you for attention. Here You can see in a screenshot I want to install selected plugin Hibernate from NetBeans 8.2 Plugin Portal But it required freemarker plugin to be installed but It keep saying same thing I've mentioned above *The plugin Freemarker Integration is requested in implementation version 238.* though I'm installing FreeMarker plugin from the NetBeans 8.2 Plugins Portal. !hibernate plugin.png! was (Author: swapnil722): Thank you for attention. Here You can see in a screenshot I want to install selected plugin Hibernate from NetBeans 8.2 Plugin Portal But it required freemarker plugin to be installed but It keep saying same thing I've mentioned above *The plugin Freemarker Integration is requested in implementation version 238.* though I'm installing FreeMarker plugin from the 8.2 Plugins Portal. !hibernate plugin.png! > No dependent plugins are available at Apache NetBeans plugin portal for > Hibernate > - > > Key: NETBEANS-4468 > URL: https://issues.apache.org/jira/browse/NETBEANS-4468 > Project: NetBeans > Issue Type: Improvement > Components: javaee - Hibernate > Environment: Debain 10.4 Buster AMD 64-bits > openjdk 11.0.7 2020-04-14 LTS > Apache NetBeans 12.0 LTS >Reporter: Swapnil Sidram Nagtilak >Priority: Major > Labels: Debian > Attachments: error.png, hibernate plugin.png > > > In Apache NetBeans 12.0 LTS > When I'm trying to install Hibernate plugin it says : > *Some plugins require plugin Freemarker Integration to be installed* > *^The plugin Freemarker Integration is requested in implementation version > 238.^* > ^{color:#172b4d}*The following plugin is affected:*{color}^ > {color:#172b4d}*^Hibernate^* {color} > > {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* > plugin is not available. {color} > {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' > plugin portal*{color} > {color:#172b4d}*[FreeMarker support for > NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]* > but getting same error. > !error.png! > > {color:#172b4d}Please make them available on *Apache Plugin Portal*{color} -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate
[ https://issues.apache.org/jira/browse/NETBEANS-4468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17142746#comment-17142746 ] Swapnil Sidram Nagtilak edited comment on NETBEANS-4468 at 6/23/20, 8:46 AM: - Thank you for attention. Here You can see in a screenshot I want to install selected plugin Hibernate from NetBeans 8.2 Plugin Portal But it required freemarker plugin to be installed but It keep saying same thing I've mentioned above *The plugin Freemarker Integration is requested in implementation version 238.* though I'm installing FreeMarker plugin from the 8.2 Plugins Portal. !hibernate plugin.png! was (Author: swapnil722): Thank you for attention. Here You can see in screenshot I want to install selected plugin Hibernate from NetBeans 8.2 Plugin Portal But it required freemarker plugin to be installed but It keep saying same thing I've mentioned above. !hibernate plugin.png! > No dependent plugins are available at Apache NetBeans plugin portal for > Hibernate > - > > Key: NETBEANS-4468 > URL: https://issues.apache.org/jira/browse/NETBEANS-4468 > Project: NetBeans > Issue Type: Improvement > Components: javaee - Hibernate > Environment: Debain 10.4 Buster AMD 64-bits > openjdk 11.0.7 2020-04-14 LTS > Apache NetBeans 12.0 LTS >Reporter: Swapnil Sidram Nagtilak >Priority: Major > Labels: Debian > Attachments: error.png, hibernate plugin.png > > > In Apache NetBeans 12.0 LTS > When I'm trying to install Hibernate plugin it says : > *Some plugins require plugin Freemarker Integration to be installed* > *^The plugin Freemarker Integration is requested in implementation version > 238.^* > ^{color:#172b4d}*The following plugin is affected:*{color}^ > {color:#172b4d}*^Hibernate^* {color} > > {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* > plugin is not available. {color} > {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' > plugin portal*{color} > {color:#172b4d}*[FreeMarker support for > NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]* > but getting same error. > !error.png! > > {color:#172b4d}Please make them available on *Apache Plugin Portal*{color} -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate
[ https://issues.apache.org/jira/browse/NETBEANS-4468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17142746#comment-17142746 ] Swapnil Sidram Nagtilak commented on NETBEANS-4468: --- Thank you for attention. Here You can see in screenshot I want to install selected plugin Hibernate from NetBeans 8.2 Plugin Portal But it required freemarker plugin to be installed but It keep saying same thing I've mentioned above. !hibernate plugin.png! > No dependent plugins are available at Apache NetBeans plugin portal for > Hibernate > - > > Key: NETBEANS-4468 > URL: https://issues.apache.org/jira/browse/NETBEANS-4468 > Project: NetBeans > Issue Type: Improvement > Components: javaee - Hibernate > Environment: Debain 10.4 Buster AMD 64-bits > openjdk 11.0.7 2020-04-14 LTS > Apache NetBeans 12.0 LTS >Reporter: Swapnil Sidram Nagtilak >Priority: Major > Labels: Debian > Attachments: error.png, hibernate plugin.png > > > In Apache NetBeans 12.0 LTS > When I'm trying to install Hibernate plugin it says : > *Some plugins require plugin Freemarker Integration to be installed* > *^The plugin Freemarker Integration is requested in implementation version > 238.^* > ^{color:#172b4d}*The following plugin is affected:*{color}^ > {color:#172b4d}*^Hibernate^* {color} > > {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* > plugin is not available. {color} > {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' > plugin portal*{color} > {color:#172b4d}*[FreeMarker support for > NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]* > but getting same error. > !error.png! > > {color:#172b4d}Please make them available on *Apache Plugin Portal*{color} -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-2970) Lombok not working correctly in NetBeans 11.0 and 11.1
[ https://issues.apache.org/jira/browse/NETBEANS-2970?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17142741#comment-17142741 ] Przemysław Sadowski commented on NETBEANS-2970: --- Issue still persists, with NetBeans 11.3 and 12.0, Lombok version 1.18.12. > Lombok not working correctly in NetBeans 11.0 and 11.1 > -- > > Key: NETBEANS-2970 > URL: https://issues.apache.org/jira/browse/NETBEANS-2970 > Project: NetBeans > Issue Type: Bug >Affects Versions: 11.0, 12.0, 11.1, 11.2, 11.3 >Reporter: Przemysław Sadowski >Priority: Major > Attachments: LombokTest.zip, log.zip, log_20191104.zip, log_v2.zip > > > Many classes using Lombok in project I'm working on at work fail to be > correctly processed by NetBeans. I narrowed it down to cases in attached > exaple project. > When using Lombok 1.6.22, builder methods are not visible in editor making a > lot of error notes in editor. > When using Lombok 1.8.8, builder method works but there are errors with > parsing some classes, example: > {code:java} > @Builder > public class SomeValueClass { > @Singular > private Map values; > }{code} > NetBeans fails with exception when trying to parse this class, and this class > is not visible as class to NetBeans (can't open it using "Go To Type" for > example). if I change byte[] to any non-primitive type it works. Using > primitive types (byte, boolean, int) fails. > I'm attaching content of log directory from NetBeans, with bug related dump > and exception in it. > Attached example project seem to be working correctly in NetBeans 8.2. -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate
[ https://issues.apache.org/jira/browse/NETBEANS-4468?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Swapnil Sidram Nagtilak updated NETBEANS-4468: -- Attachment: hibernate plugin.png > No dependent plugins are available at Apache NetBeans plugin portal for > Hibernate > - > > Key: NETBEANS-4468 > URL: https://issues.apache.org/jira/browse/NETBEANS-4468 > Project: NetBeans > Issue Type: Improvement > Components: javaee - Hibernate > Environment: Debain 10.4 Buster AMD 64-bits > openjdk 11.0.7 2020-04-14 LTS > Apache NetBeans 12.0 LTS >Reporter: Swapnil Sidram Nagtilak >Priority: Major > Labels: Debian > Attachments: error.png, hibernate plugin.png > > > In Apache NetBeans 12.0 LTS > When I'm trying to install Hibernate plugin it says : > *Some plugins require plugin Freemarker Integration to be installed* > *^The plugin Freemarker Integration is requested in implementation version > 238.^* > ^{color:#172b4d}*The following plugin is affected:*{color}^ > {color:#172b4d}*^Hibernate^* {color} > > {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* > plugin is not available. {color} > {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' > plugin portal*{color} > {color:#172b4d}*[FreeMarker support for > NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]* > but getting same error. > !error.png! > > {color:#172b4d}Please make them available on *Apache Plugin Portal*{color} -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-2970) Lombok not working correctly in NetBeans 11.0 and 11.1
[ https://issues.apache.org/jira/browse/NETBEANS-2970?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Przemysław Sadowski updated NETBEANS-2970: -- Affects Version/s: 12.0 11.3 > Lombok not working correctly in NetBeans 11.0 and 11.1 > -- > > Key: NETBEANS-2970 > URL: https://issues.apache.org/jira/browse/NETBEANS-2970 > Project: NetBeans > Issue Type: Bug >Affects Versions: 11.0, 12.0, 11.1, 11.2, 11.3 >Reporter: Przemysław Sadowski >Priority: Major > Attachments: LombokTest.zip, log.zip, log_20191104.zip, log_v2.zip > > > Many classes using Lombok in project I'm working on at work fail to be > correctly processed by NetBeans. I narrowed it down to cases in attached > exaple project. > When using Lombok 1.6.22, builder methods are not visible in editor making a > lot of error notes in editor. > When using Lombok 1.8.8, builder method works but there are errors with > parsing some classes, example: > {code:java} > @Builder > public class SomeValueClass { > @Singular > private Map values; > }{code} > NetBeans fails with exception when trying to parse this class, and this class > is not visible as class to NetBeans (can't open it using "Go To Type" for > example). if I change byte[] to any non-primitive type it works. Using > primitive types (byte, boolean, int) fails. > I'm attaching content of log directory from NetBeans, with bug related dump > and exception in it. > Attached example project seem to be working correctly in NetBeans 8.2. -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate
[ https://issues.apache.org/jira/browse/NETBEANS-4468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17142735#comment-17142735 ] Geertjan Wielenga commented on NETBEANS-4468: - Can you please point to the Hibernate plugin. I still do not know what plugin you are referring to. > No dependent plugins are available at Apache NetBeans plugin portal for > Hibernate > - > > Key: NETBEANS-4468 > URL: https://issues.apache.org/jira/browse/NETBEANS-4468 > Project: NetBeans > Issue Type: Improvement > Components: javaee - Hibernate > Environment: Debain 10.4 Buster AMD 64-bits > openjdk 11.0.7 2020-04-14 LTS > Apache NetBeans 12.0 LTS >Reporter: Swapnil Sidram Nagtilak >Priority: Major > Labels: Debian > Attachments: error.png > > > In Apache NetBeans 12.0 LTS > When I'm trying to install Hibernate plugin it says : > *Some plugins require plugin Freemarker Integration to be installed* > *^The plugin Freemarker Integration is requested in implementation version > 238.^* > ^{color:#172b4d}*The following plugin is affected:*{color}^ > {color:#172b4d}*^Hibernate^* {color} > > {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* > plugin is not available. {color} > {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' > plugin portal*{color} > {color:#172b4d}*[FreeMarker support for > NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]* > but getting same error. > !error.png! > > {color:#172b4d}Please make them available on *Apache Plugin Portal*{color} -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate
[ https://issues.apache.org/jira/browse/NETBEANS-4468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17142733#comment-17142733 ] Swapnil Sidram Nagtilak edited comment on NETBEANS-4468 at 6/23/20, 8:35 AM: - This one [http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans] need to be installed for installing Hibernate plugin but after install it keep saying *The plugin Freemarker Integration is requested in implementation version 238.* was (Author: swapnil722): This one [http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans] need to be installed to install Hibernate plugin but after install it keep saying *The plugin Freemarker Integration is requested in implementation version 238.* > No dependent plugins are available at Apache NetBeans plugin portal for > Hibernate > - > > Key: NETBEANS-4468 > URL: https://issues.apache.org/jira/browse/NETBEANS-4468 > Project: NetBeans > Issue Type: Improvement > Components: javaee - Hibernate > Environment: Debain 10.4 Buster AMD 64-bits > openjdk 11.0.7 2020-04-14 LTS > Apache NetBeans 12.0 LTS >Reporter: Swapnil Sidram Nagtilak >Priority: Major > Labels: Debian > Attachments: error.png > > > In Apache NetBeans 12.0 LTS > When I'm trying to install Hibernate plugin it says : > *Some plugins require plugin Freemarker Integration to be installed* > *^The plugin Freemarker Integration is requested in implementation version > 238.^* > ^{color:#172b4d}*The following plugin is affected:*{color}^ > {color:#172b4d}*^Hibernate^* {color} > > {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* > plugin is not available. {color} > {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' > plugin portal*{color} > {color:#172b4d}*[FreeMarker support for > NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]* > but getting same error. > !error.png! > > {color:#172b4d}Please make them available on *Apache Plugin Portal*{color} -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate
[ https://issues.apache.org/jira/browse/NETBEANS-4468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17142733#comment-17142733 ] Swapnil Sidram Nagtilak commented on NETBEANS-4468: --- This one [http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans] need to be installed to install Hibernate plugin but after install it keep saying *The plugin Freemarker Integration is requested in implementation version 238.* > No dependent plugins are available at Apache NetBeans plugin portal for > Hibernate > - > > Key: NETBEANS-4468 > URL: https://issues.apache.org/jira/browse/NETBEANS-4468 > Project: NetBeans > Issue Type: Improvement > Components: javaee - Hibernate > Environment: Debain 10.4 Buster AMD 64-bits > openjdk 11.0.7 2020-04-14 LTS > Apache NetBeans 12.0 LTS >Reporter: Swapnil Sidram Nagtilak >Priority: Major > Labels: Debian > Attachments: error.png > > > In Apache NetBeans 12.0 LTS > When I'm trying to install Hibernate plugin it says : > *Some plugins require plugin Freemarker Integration to be installed* > *^The plugin Freemarker Integration is requested in implementation version > 238.^* > ^{color:#172b4d}*The following plugin is affected:*{color}^ > {color:#172b4d}*^Hibernate^* {color} > > {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* > plugin is not available. {color} > {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' > plugin portal*{color} > {color:#172b4d}*[FreeMarker support for > NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]* > but getting same error. > !error.png! > > {color:#172b4d}Please make them available on *Apache Plugin Portal*{color} -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate
[ https://issues.apache.org/jira/browse/NETBEANS-4468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17142728#comment-17142728 ] Geertjan Wielenga commented on NETBEANS-4468: - Which plugin are you talking about, can you provide a URL to it? > No dependent plugins are available at Apache NetBeans plugin portal for > Hibernate > - > > Key: NETBEANS-4468 > URL: https://issues.apache.org/jira/browse/NETBEANS-4468 > Project: NetBeans > Issue Type: Improvement > Components: javaee - Hibernate > Environment: Debain 10.4 Buster AMD 64-bits > openjdk 11.0.7 2020-04-14 LTS > Apache NetBeans 12.0 LTS >Reporter: Swapnil Sidram Nagtilak >Priority: Major > Labels: Debian > Attachments: error.png > > > In Apache NetBeans 12.0 LTS > When I'm trying to install Hibernate plugin it says : > *Some plugins require plugin Freemarker Integration to be installed* > *^The plugin Freemarker Integration is requested in implementation version > 238.^* > ^{color:#172b4d}*The following plugin is affected:*{color}^ > {color:#172b4d}*^Hibernate^* {color} > > {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* > plugin is not available. {color} > {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' > plugin portal*{color} > {color:#172b4d}*[FreeMarker support for > NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]* > but getting same error. > !error.png! > > {color:#172b4d}Please make them available on *Apache Plugin Portal*{color} -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate
[ https://issues.apache.org/jira/browse/NETBEANS-4468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17142719#comment-17142719 ] Swapnil Sidram Nagtilak edited comment on NETBEANS-4468 at 6/23/20, 8:26 AM: - Previous NetBenas' versions was like *install and forget* and *so much handy* but now need to spend time to configure it. And issue I've pointed make it *useless* though *NetBeans' 12.0 LTS performance is much faster* than prior versions and +community won't look into this.+ I'm habituated to NetBeans because of it's so much handy and easy interface. Kindly provide at least working modules. was (Author: swapnil722): Previously NetBenas' versions was like *install and forget* and *so much handy* but now need to spend time to configure it. And issue I've pointed make it *useless* though *NetBeans' 12.0 LTS performance is much faster* than prior versions and +community won't look into this.+ I'm habituated to NetBeans because of it's so much handy and easy interface. Kindly provide at least working modules. > No dependent plugins are available at Apache NetBeans plugin portal for > Hibernate > - > > Key: NETBEANS-4468 > URL: https://issues.apache.org/jira/browse/NETBEANS-4468 > Project: NetBeans > Issue Type: Improvement > Components: javaee - Hibernate > Environment: Debain 10.4 Buster AMD 64-bits > openjdk 11.0.7 2020-04-14 LTS > Apache NetBeans 12.0 LTS >Reporter: Swapnil Sidram Nagtilak >Priority: Major > Labels: Debian > Attachments: error.png > > > In Apache NetBeans 12.0 LTS > When I'm trying to install Hibernate plugin it says : > *Some plugins require plugin Freemarker Integration to be installed* > *^The plugin Freemarker Integration is requested in implementation version > 238.^* > ^{color:#172b4d}*The following plugin is affected:*{color}^ > {color:#172b4d}*^Hibernate^* {color} > > {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* > plugin is not available. {color} > {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' > plugin portal*{color} > {color:#172b4d}*[FreeMarker support for > NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]* > but getting same error. > !error.png! > > {color:#172b4d}Please make them available on *Apache Plugin Portal*{color} -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate
[ https://issues.apache.org/jira/browse/NETBEANS-4468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17142719#comment-17142719 ] Swapnil Sidram Nagtilak edited comment on NETBEANS-4468 at 6/23/20, 8:25 AM: - Previously NetBenas' versions was like *install and forget* and *so much handy* but now need to spend time to configure it. And issue I've pointed make it *useless* though *NetBeans' 12.0 LTS performance is much faster* than prior versions and +community won't look into this.+ I'm habituated to NetBeans because of it's so much handy and easy interface. Kindly provide at least working modules. was (Author: swapnil722): Previously NetBenas' versions was like *install and forget* and *so much handy* but now need to spend time to configure it. And issue I've pointed make it *useless* and community won't look into this. I'm habituated to NetBeans because of it's so much handy and easy interface. Kindly provide at least working modules. > No dependent plugins are available at Apache NetBeans plugin portal for > Hibernate > - > > Key: NETBEANS-4468 > URL: https://issues.apache.org/jira/browse/NETBEANS-4468 > Project: NetBeans > Issue Type: Improvement > Components: javaee - Hibernate > Environment: Debain 10.4 Buster AMD 64-bits > openjdk 11.0.7 2020-04-14 LTS > Apache NetBeans 12.0 LTS >Reporter: Swapnil Sidram Nagtilak >Priority: Major > Labels: Debian > Attachments: error.png > > > In Apache NetBeans 12.0 LTS > When I'm trying to install Hibernate plugin it says : > *Some plugins require plugin Freemarker Integration to be installed* > *^The plugin Freemarker Integration is requested in implementation version > 238.^* > ^{color:#172b4d}*The following plugin is affected:*{color}^ > {color:#172b4d}*^Hibernate^* {color} > > {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* > plugin is not available. {color} > {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' > plugin portal*{color} > {color:#172b4d}*[FreeMarker support for > NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]* > but getting same error. > !error.png! > > {color:#172b4d}Please make them available on *Apache Plugin Portal*{color} -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate
[ https://issues.apache.org/jira/browse/NETBEANS-4468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17142719#comment-17142719 ] Swapnil Sidram Nagtilak edited comment on NETBEANS-4468 at 6/23/20, 8:24 AM: - Previously NetBenas' versions was like *install and forget* and *so much handy* but now need to spend time to configure it. And issue I've pointed make it *useless* and community won't look into this. I'm habituated to NetBeans because of it's so much handy and easy interface. Kindly provide at least working modules. was (Author: swapnil722): Previously NetBenas' versions was like *install and forget* and *so much handy* but now need to spend time to configure it. And issue I've pointed make it useless and community won't look into this. I'm habituated to NetBeans because of it's so much handy and easy interface. Kindly provide at least working modules. > No dependent plugins are available at Apache NetBeans plugin portal for > Hibernate > - > > Key: NETBEANS-4468 > URL: https://issues.apache.org/jira/browse/NETBEANS-4468 > Project: NetBeans > Issue Type: Improvement > Components: javaee - Hibernate > Environment: Debain 10.4 Buster AMD 64-bits > openjdk 11.0.7 2020-04-14 LTS > Apache NetBeans 12.0 LTS >Reporter: Swapnil Sidram Nagtilak >Priority: Major > Labels: Debian > Attachments: error.png > > > In Apache NetBeans 12.0 LTS > When I'm trying to install Hibernate plugin it says : > *Some plugins require plugin Freemarker Integration to be installed* > *^The plugin Freemarker Integration is requested in implementation version > 238.^* > ^{color:#172b4d}*The following plugin is affected:*{color}^ > {color:#172b4d}*^Hibernate^* {color} > > {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* > plugin is not available. {color} > {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' > plugin portal*{color} > {color:#172b4d}*[FreeMarker support for > NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]* > but getting same error. > !error.png! > > {color:#172b4d}Please make them available on *Apache Plugin Portal*{color} -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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-4468) No dependent plugins are available at Apache NetBeans plugin portal for Hibernate
[ https://issues.apache.org/jira/browse/NETBEANS-4468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17142719#comment-17142719 ] Swapnil Sidram Nagtilak commented on NETBEANS-4468: --- Previously NetBenas' versions was like *install and forget* and *so much handy* but now need to spend time to configure it. And issue I've pointed make it useless and community won't look into this. I'm habituated to NetBeans because of it's so much handy and easy interface. Kindly provide at least working modules. > No dependent plugins are available at Apache NetBeans plugin portal for > Hibernate > - > > Key: NETBEANS-4468 > URL: https://issues.apache.org/jira/browse/NETBEANS-4468 > Project: NetBeans > Issue Type: Improvement > Components: javaee - Hibernate > Environment: Debain 10.4 Buster AMD 64-bits > openjdk 11.0.7 2020-04-14 LTS > Apache NetBeans 12.0 LTS >Reporter: Swapnil Sidram Nagtilak >Priority: Major > Labels: Debian > Attachments: error.png > > > In Apache NetBeans 12.0 LTS > When I'm trying to install Hibernate plugin it says : > *Some plugins require plugin Freemarker Integration to be installed* > *^The plugin Freemarker Integration is requested in implementation version > 238.^* > ^{color:#172b4d}*The following plugin is affected:*{color}^ > {color:#172b4d}*^Hibernate^* {color} > > {color:#172b4d}But at {color:#de350b}Apache Plugin Portal{color} *Freemarker* > plugin is not available. {color} > {color:#172b4d}I tried installing *Freemarker* plugin from old *NetBeans' > plugin portal*{color} > {color:#172b4d}*[FreeMarker support for > NetBeans{color}|http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans]* > but getting same error. > !error.png! > > {color:#172b4d}Please make them available on *Apache Plugin Portal*{color} -- This message was sent by Atlassian Jira (v8.3.4#803005) - 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