[jira] [Commented] (NETBEANS-84) Support for JSF 2.3

2019-04-10 Thread Geertjan Wielenga (JIRA)


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

Geertjan Wielenga commented on NETBEANS-84:
---

{quote}When Java EE 8 came out, I expected that NetBeans 9 would come out and 
support JSF 2.3. {quote}

Only in a world where NetBeans was not in the middle of moving to Apache at the 
time. :-)

> Support for JSF 2.3
> ---
>
> Key: NETBEANS-84
> URL: https://issues.apache.org/jira/browse/NETBEANS-84
> Project: NetBeans
>  Issue Type: Improvement
>  Components: javaee - JSF
>Affects Versions: 8.2, 9.0, Next
>Reporter: Philip Durbin
>Priority: Critical
> Attachments: netbeans-red-jsf2.3.png
>
>
> One thing that struck me while attending Ed Burns' JSF talk[1] about JSF 2.3 
> at JavaOne 2017 was a comment he made that autocompletion isn't working in 
> Netbeans for JSF 2.3 features. I would describe this as NetBeans 8.2 showing 
> "angry red" for components it doesn't understand, such as f:validateWholeBean.
> As in the attached screenshot, an example error is "The component library Jsf 
> Core does not contain component validateWholeBean".
> Here's the code from the screenshot: 
> https://github.com/javaee/glassfish-samples/blob/4b3a37500a256bb7d94e2abe273503c9fb017c6b/ws/javaee8/jsf/ee8additions/src/main/webapp/validateWholeBean.xhtml
> In the past, NetBeans releases were coordinated with Java EE releases. When 
> Java EE 8 came out, I expected that NetBeans 9 would come out and support JSF 
> 2.3. When we onboard new developers, I would rather not say to them, "It's ok 
> to see angry red like this in NetBeans."
> Incidentally, during Ed's talk I asked if he knew if JSF 2.3 is supported by 
> IntelliJ or Eclipse and he wasn't aware if they support it or not.
> !netbeans-red-jsf2.3.png|thumbnail!
> !https://issues.apache.org/jira/secure/attachment/12891266/netbeans-red-jsf2.3.png|height=300,width=444!
> [1] Contemporary Java Web Applications with JSF 2.3 - 
> https://www.youtube.com/watch?v=yshXLB_HdhU



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2391) NPE when opening Android projects

2019-04-10 Thread Dirk Steinmetz (JIRA)
Dirk Steinmetz created NETBEANS-2391:


 Summary: NPE when opening Android projects
 Key: NETBEANS-2391
 URL: https://issues.apache.org/jira/browse/NETBEANS-2391
 Project: NetBeans
  Issue Type: Bug
  Components: projects - Gradle
Affects Versions: 11.0
 Environment: Gradle 5.3.1
Netbeans 11.0
com.android.tools.build:gradle:3.2.1
Reporter: Dirk Steinmetz


Opening Android projects causes a NPE (as do some other operations on that 
project later on).

*STR:*
 0. Download and install Android Studio, create any default project.
 1. Open that project in netbeans 11.0 (make sure to open the 'real' project, 
usually called 'app')

*Expected:*
 The project opens (albeit maybe some or all Android-specific features are 
unavailable).

*Actual:*
{noformat}
java.lang.NullPointerException    at 
java.util.AbstractCollection.addAll(AbstractCollection.java:343)    at 
org.netbeans.modules.gradle.api.GradleBaseProjectBuilder.processDependencies(GradleBaseProjectBuilder.java:128)
    at 
org.netbeans.modules.gradle.api.GradleBaseProjectBuilder.build(GradleBaseProjectBuilder.java:75)
    at 
org.netbeans.modules.gradle.api.GradleBaseProjectBuilder$Extractor.extract(GradleBaseProjectBuilder.java:288)
    at 
org.netbeans.modules.gradle.GradleProjectCache.createGradleProject(GradleProjectCache.java:432)
    at 
org.netbeans.modules.gradle.GradleProjectCache.loadGradleProject(GradleProjectCache.java:257)
    at 
org.netbeans.modules.gradle.GradleProjectCache.access$100(GradleProjectCache.java:85)[catch]
 at 
org.netbeans.modules.gradle.GradleProjectCache$ProjectLoaderTask.call(GradleProjectCache.java:348)
    at 
org.netbeans.modules.gradle.GradleProjectCache$ProjectLoaderTask.call(GradleProjectCache.java:326)
    at java.util.concurrent.FutureTask.run(FutureTask.java:266)    at 
org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)    at 
org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)    
at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)    at 
org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033){noformat}
*Reason / Potential partial fix:*
 
[GradleBaseProjectBuilder.java:127f|https://github.com/apache/incubator-netbeans/blob/master/groovy/gradle/src/org/netbeans/modules/gradle/api/GradleBaseProjectBuilder.java#L127]:
{code:java}
Set dirs = (Set) info.get("sourceset_" + name + "_output_classes");
sourceSetOutputs.addAll(dirs);
{code}
expects a non-null "_output_classes" set for a source set, while
 
[NbProjectInfoBuilder.groovy|https://github.com/apache/incubator-netbeans/blob/master/groovy/gradle/netbeans-gradle-tooling/src/main/groovy/org/netbeans/modules/gradle/tooling/NbProjectInfoBuilder.groovy#L242]
 has a separate path for Android projects that does not (always?) populate that 
field.

In my tests just adding a null check works, although generated code and android 
sources are still unavailable while editing. There is an exception down the 
road when opening the "Sources" category in the project categories, though:
{noformat}
java.lang.NullPointerException    at 
org.netbeans.modules.gradle.java.customizer.SourceSetPanel.(SourceSetPanel.java:63)
    at 
org.netbeans.modules.gradle.java.customizer.SourcesPanel.(SourcesPanel.java:55)
    at 
org.netbeans.modules.gradle.java.customizer.SourcesPanel$1.createComponent(SourcesPanel.java:74)
    at 
org.netbeans.modules.gradle.spi.customizer.support.FilterPanelProvider.createComponent(FilterPanelProvider.java:58)
    at 
org.netbeans.spi.project.ui.support.ProjectCustomizer$DelegateCategoryProvider.create(ProjectCustomizer.java:604)
    at 
org.netbeans.modules.project.uiapi.CustomizerPane.setCategory(CustomizerPane.java:234)
    at 
org.netbeans.modules.project.uiapi.CustomizerPane.access$200(CustomizerPane.java:47)
    at 
org.netbeans.modules.project.uiapi.CustomizerPane$CategoryChangeListener.propertyChange(CustomizerPane.java:320)
    at java.beans.PropertyChangeSupport.fire(PropertyChangeSupport.java:335)    
at 
java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:327)
    at 
java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:263)
    at 
org.netbeans.modules.project.uiapi.CategoryModel.firePropertyChange(CategoryModel.java:93)
    at 
org.netbeans.modules.project.uiapi.CategoryModel.setCurrentCategory(CategoryModel.java:67)
    at 
org.netbeans.modules.project.uiapi.CategoryView.propertyChange(CategoryView.java:158)
    at java.beans.PropertyChangeSupport.fire(PropertyChangeSupport.java:335)    
at 
java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:327)
    at 
java.beans.PropertyChangeSupport.firePropertyChange(PropertyChangeSupport.java:263)
    at org.openide.explorer.ExplorerManager$2.run(ExplorerManager.java:866)    
at 
org.netbeans.modules.openide.util.NbMutexE

[jira] [Assigned] (NETBEANS-2368) Allow selection of Gradle Distribution Type

2019-04-10 Thread Laszlo Kishalmi (JIRA)


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

Laszlo Kishalmi reassigned NETBEANS-2368:
-

Assignee: Laszlo Kishalmi

> Allow selection of Gradle Distribution Type
> ---
>
> Key: NETBEANS-2368
> URL: https://issues.apache.org/jira/browse/NETBEANS-2368
> Project: NetBeans
>  Issue Type: Improvement
>  Components: projects - Gradle
>Affects Versions: 11.0
>Reporter: Charles George
>Assignee: Laszlo Kishalmi
>Priority: Major
>  Labels: usability
>
> Tools->Options->Java->Gradle
> In this Distribution section there should be a drop-down or check box to 
> select the distribution type of Gradle. Currently it supports selecting the 
> Gradle version and defaulting to the 'bin' distribution – it should also 
> allow you to select the type (all distribution)



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-84) Support for JSF 2.3

2019-04-10 Thread Marlon (JIRA)


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

Marlon commented on NETBEANS-84:


This issue should be a critical priority

> Support for JSF 2.3
> ---
>
> Key: NETBEANS-84
> URL: https://issues.apache.org/jira/browse/NETBEANS-84
> Project: NetBeans
>  Issue Type: Improvement
>  Components: javaee - JSF
>Affects Versions: 8.2, 9.0, Next
>Reporter: Philip Durbin
>Priority: Critical
> Attachments: netbeans-red-jsf2.3.png
>
>
> One thing that struck me while attending Ed Burns' JSF talk[1] about JSF 2.3 
> at JavaOne 2017 was a comment he made that autocompletion isn't working in 
> Netbeans for JSF 2.3 features. I would describe this as NetBeans 8.2 showing 
> "angry red" for components it doesn't understand, such as f:validateWholeBean.
> As in the attached screenshot, an example error is "The component library Jsf 
> Core does not contain component validateWholeBean".
> Here's the code from the screenshot: 
> https://github.com/javaee/glassfish-samples/blob/4b3a37500a256bb7d94e2abe273503c9fb017c6b/ws/javaee8/jsf/ee8additions/src/main/webapp/validateWholeBean.xhtml
> In the past, NetBeans releases were coordinated with Java EE releases. When 
> Java EE 8 came out, I expected that NetBeans 9 would come out and support JSF 
> 2.3. When we onboard new developers, I would rather not say to them, "It's ok 
> to see angry red like this in NetBeans."
> Incidentally, during Ed's talk I asked if he knew if JSF 2.3 is supported by 
> IntelliJ or Eclipse and he wasn't aware if they support it or not.
> !netbeans-red-jsf2.3.png|thumbnail!
> !https://issues.apache.org/jira/secure/attachment/12891266/netbeans-red-jsf2.3.png|height=300,width=444!
> [1] Contemporary Java Web Applications with JSF 2.3 - 
> https://www.youtube.com/watch?v=yshXLB_HdhU



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-84) Support for JSF 2.3

2019-04-10 Thread Marlon (JIRA)


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

Marlon updated NETBEANS-84:
---
Priority: Critical  (was: Minor)

> Support for JSF 2.3
> ---
>
> Key: NETBEANS-84
> URL: https://issues.apache.org/jira/browse/NETBEANS-84
> Project: NetBeans
>  Issue Type: Improvement
>  Components: javaee - JSF
>Affects Versions: 8.2, 9.0, Next
>Reporter: Philip Durbin
>Priority: Critical
> Attachments: netbeans-red-jsf2.3.png
>
>
> One thing that struck me while attending Ed Burns' JSF talk[1] about JSF 2.3 
> at JavaOne 2017 was a comment he made that autocompletion isn't working in 
> Netbeans for JSF 2.3 features. I would describe this as NetBeans 8.2 showing 
> "angry red" for components it doesn't understand, such as f:validateWholeBean.
> As in the attached screenshot, an example error is "The component library Jsf 
> Core does not contain component validateWholeBean".
> Here's the code from the screenshot: 
> https://github.com/javaee/glassfish-samples/blob/4b3a37500a256bb7d94e2abe273503c9fb017c6b/ws/javaee8/jsf/ee8additions/src/main/webapp/validateWholeBean.xhtml
> In the past, NetBeans releases were coordinated with Java EE releases. When 
> Java EE 8 came out, I expected that NetBeans 9 would come out and support JSF 
> 2.3. When we onboard new developers, I would rather not say to them, "It's ok 
> to see angry red like this in NetBeans."
> Incidentally, during Ed's talk I asked if he knew if JSF 2.3 is supported by 
> IntelliJ or Eclipse and he wasn't aware if they support it or not.
> !netbeans-red-jsf2.3.png|thumbnail!
> !https://issues.apache.org/jira/secure/attachment/12891266/netbeans-red-jsf2.3.png|height=300,width=444!
> [1] Contemporary Java Web Applications with JSF 2.3 - 
> https://www.youtube.com/watch?v=yshXLB_HdhU



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2389) Missing source level 11 and 12 in a NetBeans module project

2019-04-10 Thread Junichi Yamamoto (JIRA)


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

Junichi Yamamoto resolved NETBEANS-2389.

   Resolution: Fixed
Fix Version/s: Next

> Missing source level 11 and 12 in a NetBeans module project
> ---
>
> Key: NETBEANS-2389
> URL: https://issues.apache.org/jira/browse/NETBEANS-2389
> Project: NetBeans
>  Issue Type: Bug
>  Components: apisupport - Project, java - Project, projects - Ant 
> Project
>Affects Versions: 11.0
>Reporter: Junichi Yamamoto
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: pull-request-available
> Fix For: Next
>
> Attachments: nb-module-project-source-level-nb11.png
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> Missing source level 11 and 12 in a NetBeans module project.
>  !nb-module-project-source-level-nb11.png! 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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



[incubator-netbeans] branch master updated: [NETBEANS-2389] Missing source level 11 and 12 in a NetBeans module project

2019-04-10 Thread lkishalmi
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 57339e1  [NETBEANS-2389] Missing source level 11 and 12 in a NetBeans 
module project
57339e1 is described below

commit 57339e19fefeaec11d34e56e25245d62470e998d
Author: Junichi Yamamoto 
AuthorDate: Wed Apr 10 21:04:43 2019 +0900

[NETBEANS-2389] Missing source level 11 and 12 in a NetBeans module project
---
 .../apisupport/project/ui/customizer/SingleModuleProperties.java| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/apisupport/apisupport.ant/src/org/netbeans/modules/apisupport/project/ui/customizer/SingleModuleProperties.java
 
b/apisupport/apisupport.ant/src/org/netbeans/modules/apisupport/project/ui/customizer/SingleModuleProperties.java
index 88dfb47..d4226de 100644
--- 
a/apisupport/apisupport.ant/src/org/netbeans/modules/apisupport/project/ui/customizer/SingleModuleProperties.java
+++ 
b/apisupport/apisupport.ant/src/org/netbeans/modules/apisupport/project/ui/customizer/SingleModuleProperties.java
@@ -118,7 +118,7 @@ public final class SingleModuleProperties extends 
ModuleProperties {
 public static final String SPEC_VERSION_BASE = "spec.version.base"; // 
NOI18N
 /** @see "#66278" */
 public static final String JAVAC_COMPILERARGS = "javac.compilerargs"; // 
NOI18N
-static final String[] SOURCE_LEVELS = {"1.4", "1.5", "1.6", "1.7", "1.8", 
"9", "10"}; // NOI18N
+static final String[] SOURCE_LEVELS = {"1.4", "1.5", "1.6", "1.7", "1.8", 
"9", "10", "11", "12"}; // NOI18N
 private final static Map DEFAULTS;
 
 private static final Logger LOG = 
Logger.getLogger(SingleModuleProperties.class.getName());


-
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-2390) Create method "yourMethod(...)" in ... doesn't work

2019-04-10 Thread Mario J. Schwaiger (JIRA)
Mario J. Schwaiger created NETBEANS-2390:


 Summary: Create method "yourMethod(...)" in ... doesn't work
 Key: NETBEANS-2390
 URL: https://issues.apache.org/jira/browse/NETBEANS-2390
 Project: NetBeans
  Issue Type: Bug
  Components: cnd - Editor
Affects Versions: 10.0, 8.2
 Environment: Ubuntu 18.04
Reporter: Mario J. Schwaiger


I'm writing a method which is not existing yet and make use of the _Create 
method "yourMethod(...)"_ functionality by clicking on the upcoming tooltip, 
but nothing happens.

The faulty code-line remains underlined in red. Clicking on it makes me jump to 
the declaration of the class.

I remember I had this issue in older version of Netbeans already.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2389) Missing source level 11 and 12 in a NetBeans module project

2019-04-10 Thread ASF GitHub Bot (JIRA)


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

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

> Missing source level 11 and 12 in a NetBeans module project
> ---
>
> Key: NETBEANS-2389
> URL: https://issues.apache.org/jira/browse/NETBEANS-2389
> Project: NetBeans
>  Issue Type: Bug
>  Components: apisupport - Project, java - Project, projects - Ant 
> Project
>Affects Versions: 11.0
>Reporter: Junichi Yamamoto
>Assignee: Junichi Yamamoto
>Priority: Major
>  Labels: pull-request-available
> Attachments: nb-module-project-source-level-nb11.png
>
>
> Missing source level 11 and 12 in a NetBeans module project.
>  !nb-module-project-source-level-nb11.png! 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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] [Reopened] (NETBEANS-1638) OSGi support is broken

2019-04-10 Thread Markus Sunela (JIRA)


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

Markus Sunela reopened NETBEANS-1638:
-

With NetBeans 11.0 following exception is thrown due to the missing package 
exports in the OSGi module:

 

{{java.lang.NoClassDefFoundError: 
org/apache/felix/resolver/reason/ReasonException}}
{{    at 
org.apache.felix.resolver.ResolverImpl.permuteUsedBlames(ResolverImpl.java:1548)}}
{{    at 
org.apache.felix.resolver.ResolverImpl.checkPackageSpaceConsistency(ResolverImpl.java:1440)}}
{{    at 
org.apache.felix.resolver.ResolverImpl.checkConsistency(ResolverImpl.java:622)}}
{{    at 
org.apache.felix.resolver.ResolverImpl.findValidCandidates(ResolverImpl.java:575)}}
{{    at 
org.apache.felix.resolver.ResolverImpl.doResolve(ResolverImpl.java:438)}}
{{    at org.apache.felix.resolver.ResolverImpl.resolve(ResolverImpl.java:421)}}
{{    at org.apache.felix.resolver.ResolverImpl.resolve(ResolverImpl.java:375)}}
{{    at 
org.apache.felix.framework.StatefulResolver.resolve(StatefulResolver.java:478)}}
{{    at 
org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:4363)}}
{{    at org.apache.felix.framework.Felix.findBundleEntries(Felix.java:1972)}}
{{    at 
org.apache.felix.framework.BundleImpl.findEntries(BundleImpl.java:333)}}
{{    at org.netbeans.core.netigso.Netigso.createLoader(Netigso.java:278)}}
{{    at org.netbeans.NetigsoModule.start(NetigsoModule.java:95)}}
{{    at org.netbeans.NetigsoHandle.delayedInit(NetigsoHandle.java:147)}}
{{    at org.netbeans.NetigsoHandle.turnOn(NetigsoHandle.java:120)}}
{{    at org.netbeans.ModuleManager.enable(ModuleManager.java:1437)}}
{{    at org.netbeans.ModuleManager.enable(ModuleManager.java:1254)}}
{{    at org.netbeans.core.startup.ModuleList.installNew(ModuleList.java:315)}}
{{    at org.netbeans.core.startup.ModuleList.trigger(ModuleList.java:251)}}
{{    at org.netbeans.core.startup.ModuleSystem.restore(ModuleSystem.java:298)}}
{{    at org.netbeans.core.startup.Main.getModuleSystem(Main.java:156)}}
{{    at org.netbeans.core.startup.Main.getModuleSystem(Main.java:125)}}
{{    at org.netbeans.core.startup.Main.start(Main.java:282)}}
{{    at org.netbeans.core.startup.TopThreadGroup.run(TopThreadGroup.java:98)}}
{{    at java.base/java.lang.Thread.run(Thread.java:834)}}
{{Caused by: java.lang.ClassNotFoundException: 
org.apache.felix.resolver.reason.ReasonException starting from 
ModuleCL@37b7073f[org.netbeans.libs.felix] with possible defining loaders null 
and declared parents [ModuleCL@12d0e6ed[org.netbeans.libs.osgi]]}}
{{    at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:199)}}
{{    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521)}}
{{    ... 25 more}}
{{Caused by: java.lang.ClassNotFoundException: 
org.apache.felix.resolver.reason.ReasonException}}
{{    at 
java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:582)}}
{{    at 
java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178)}}
{{    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521)}}
{{    at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:197)}}
{{    ... 26 more}}

> OSGi support is broken
> --
>
> Key: NETBEANS-1638
> URL: https://issues.apache.org/jira/browse/NETBEANS-1638
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - Module System
>Affects Versions: 9.0, 10.0
>Reporter: Peter Nabbefeld
>Assignee: Jaroslav Tulach
>Priority: Critical
> Fix For: 11.0
>
> Attachments: 
> Updated_felix_to_5_6_10_to_enable_osgi_bundles_for_java_9_and_later_.patch
>
>
> The included Felix jar (in module lib.felix) is outdated and does not work 
> with JDK > 9.
> Included version: 4.2.1
> Current version: 6.0.1
> For a short discussion of the problem see: 
> https://github.com/mojohaus/nbm-maven-plugin/issues/52



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2389) Missing source level 11 and 12 in a NetBeans module project

2019-04-10 Thread Junichi Yamamoto (JIRA)
Junichi Yamamoto created NETBEANS-2389:
--

 Summary: Missing source level 11 and 12 in a NetBeans module 
project
 Key: NETBEANS-2389
 URL: https://issues.apache.org/jira/browse/NETBEANS-2389
 Project: NetBeans
  Issue Type: Bug
  Components: apisupport - Project, java - Project, projects - Ant 
Project
Affects Versions: 11.0
Reporter: Junichi Yamamoto
Assignee: Junichi Yamamoto
 Attachments: nb-module-project-source-level-nb11.png

Missing source level 11 and 12 in a NetBeans module project.

 !nb-module-project-source-level-nb11.png! 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2380) Netbeans update fails

2019-04-10 Thread Antonio Vieiro (JIRA)


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

Antonio Vieiro resolved NETBEANS-2380.
--
Resolution: Fixed
  Assignee: Antonio Vieiro

Working now. See 
[https://github.com/apache/incubator-netbeans-website/pull/348] for details.

> Netbeans update fails
> -
>
> Key: NETBEANS-2380
> URL: https://issues.apache.org/jira/browse/NETBEANS-2380
> Project: NetBeans
>  Issue Type: Bug
>  Components: updatecenters - Pluginportal
>Affects Versions: 11.0
> Environment: This is a fresh new installation of Nebeans 11 x64.
> on Windows Microsoft Windows [Version 10.0.16299.1029] x64.
> java -version
> java version "1.8.0_201"
> Java(TM) SE Runtime Environment (build 1.8.0_201-b09)
> Java HotSpot(TM) 64-Bit Server VM (build 25.201-b09, mixed mode)
> No proxy environment: Use System Proxy Settings
>Reporter: Fleischer Zoltán
>Assignee: Antonio Vieiro
>Priority: Major
>  Labels: pull-request-available
> Attachments: Screenshot_20190410_101509.png
>
>  Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> NetBeans Distribution URL: 
> https://netbeans.apache.org/nb/updates/11.0/updates.xml.gz does not work. In 
> Plugins -> Updates -> Check for Updates I get the following Warning message:
> *"Unable to connect to the NetBeans Distribution because of 
> [https://netbeans.org/projects/legacy/nb/updates/11.0/updates.xml.gz?unique=05c0c2c08-5b87-4a0f-bf18-aa3a2a445688_94c524cf-30e2-4081-901a-c407a0ee498f]*
> *Check your proxy settings or try again later. The server may be unavailable 
> at the moment. You may also want to make sure that your firewall is not 
> blocking network traffic."*
> But my proxy setting is correct. For example the Plugin Portal is working: 
> [http://plugins.netbeans.org/nbpluginportal/updates/11.0/catalog.xml.gz].
> The relevant part of the IDE Log:
> INFO [org.netbeans.modules.autoupdate.updateprovider.DownloadListener]: 
> Reading URL 
> https://netbeans.apache.org/nb/updates/11.0/updates.xml.gz?unique=05c0c2c08-5b87-4a0f-bf18-aa3a2a445688_94c524cf-30e2-4081-901a-c407a0ee498f
>  failed (java.io.FileNotFoundException: 
> https://netbeans.org/projects/legacy/nb/updates/11.0/updates.xml.gz?unique=05c0c2c08-5b87-4a0f-bf18-aa3a2a445688_94c524cf-30e2-4081-901a-c407a0ee498f)
> INFO [org.netbeans.modules.autoupdate.ui.Utilities]: 
> https://netbeans.org/projects/legacy/nb/updates/11.0/updates.xml.gz?unique=05c0c2c08-5b87-4a0f-bf18-aa3a2a445688_94c524cf-30e2-4081-901a-c407a0ee498f
> java.io.FileNotFoundException: 
> https://netbeans.org/projects/legacy/nb/updates/11.0/updates.xml.gz?unique=05c0c2c08-5b87-4a0f-bf18-aa3a2a445688_94c524cf-30e2-4081-901a-c407a0ee498f
>  at 
> sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1890)
>  at 
> sun.net.www.protocol.http.HttpURLConnection.access$200(HttpURLConnection.java:91)
>  at 
> sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1484)
>  at 
> sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1482)
>  at java.security.AccessController.doPrivileged(Native Method)
>  at 
> java.security.AccessController.doPrivilegedWithCombiner(AccessController.java:782)
>  at 
> sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1481)
>  at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:480)
>  at 
> sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:347)
>  at 
> org.netbeans.modules.autoupdate.updateprovider.NetworkAccess.checkRedirect(NetworkAccess.java:241)
>  at 
> org.netbeans.modules.autoupdate.updateprovider.NetworkAccess.access$700(NetworkAccess.java:57)
>  at 
> org.netbeans.modules.autoupdate.updateprovider.NetworkAccess$Task$2.call(NetworkAccess.java:160)
> Caused: java.io.FileNotFoundException: 
> https://netbeans.org/projects/legacy/nb/updates/11.0/updates.xml.gz?unique=05c0c2c08-5b87-4a0f-bf18-aa3a2a445688_94c524cf-30e2-4081-901a-c407a0ee498f
>  at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
>  at 
> sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
>  at 
> sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
>  at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
>  at 
> sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:1944)
>  at 
> sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:1939)
>  at java.security.AccessController.doPrivileged(Native Method)
>  at 
> sun.net.www.protocol.http.HttpURLConnection.getChainedException(HttpURLConnection.java:1938)
>  at 
> sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1508

[incubator-netbeans-website] branch asf-site updated: Automated site publishing by Jenkins build 720

2019-04-10 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

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


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

commit 51d7910d1546079b1bc2841ae6ef4e2dfa4ba124
Author: jenkins 
AuthorDate: Wed Apr 10 11:44:37 2019 +

Automated site publishing by Jenkins build 720
---
 content/.htaccess | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/content/.htaccess b/content/.htaccess
index c9edda9..4b42e64 100644
--- a/content/.htaccess
+++ b/content/.htaccess
@@ -10,10 +10,10 @@ Redirect 302 /nb/report-issue 
https://issues.apache.org/jira/projects/NETBEANS/i
 #cgi mirror script
 Redirect 301 /download/maven/index.html /download/maven/index.cgi
 # Enable rewrite engine to redirect 404 pages to old netbeans.org 
(137.254.56.26)
-RewriteEngine On
+# RewriteEngine On
 # If the requested stuff is not a file ...
-RewriteCond "%{REQUEST_FILENAME}" "!-f"
+# RewriteCond "%{REQUEST_FILENAME}" "!-f"
 # ... nor a directory ...
-RewriteCond "%{REQUEST_FILENAME}" "!-d"
+# RewriteCond "%{REQUEST_FILENAME}" "!-d"
 # ... then redirect (302) to the legacy.netbeans.org server with Oracle era 
content
-RewriteRule (.*) "https://legacy.netbeans.org/$1"; [L,R=302]
+# RewriteRule (.*) "https://legacy.netbeans.org/$1"; [L,R=302]


-
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



[incubator-netbeans-website] branch master updated: [NETBEANS-2080] Restoring .htaccess (#348)

2019-04-10 Thread vieiro
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new b45cfb4  [NETBEANS-2080] Restoring .htaccess (#348)
b45cfb4 is described below

commit b45cfb4efe6eafa574567360510439b9c2acd1ca
Author: Antonio Vieiro 
AuthorDate: Wed Apr 10 13:42:00 2019 +0200

[NETBEANS-2080] Restoring .htaccess (#348)

It seems .htaccess was redirecting the catalog file incorrectly.
---
 netbeans.apache.org/src/content/.htaccess | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/netbeans.apache.org/src/content/.htaccess 
b/netbeans.apache.org/src/content/.htaccess
index c9edda9..4b42e64 100644
--- a/netbeans.apache.org/src/content/.htaccess
+++ b/netbeans.apache.org/src/content/.htaccess
@@ -10,10 +10,10 @@ Redirect 302 /nb/report-issue 
https://issues.apache.org/jira/projects/NETBEANS/i
 #cgi mirror script
 Redirect 301 /download/maven/index.html /download/maven/index.cgi
 # Enable rewrite engine to redirect 404 pages to old netbeans.org 
(137.254.56.26)
-RewriteEngine On
+# RewriteEngine On
 # If the requested stuff is not a file ...
-RewriteCond "%{REQUEST_FILENAME}" "!-f"
+# RewriteCond "%{REQUEST_FILENAME}" "!-f"
 # ... nor a directory ...
-RewriteCond "%{REQUEST_FILENAME}" "!-d"
+# RewriteCond "%{REQUEST_FILENAME}" "!-d"
 # ... then redirect (302) to the legacy.netbeans.org server with Oracle era 
content
-RewriteRule (.*) "https://legacy.netbeans.org/$1"; [L,R=302]
+# RewriteRule (.*) "https://legacy.netbeans.org/$1"; [L,R=302]


-
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-2380) Netbeans update fails

2019-04-10 Thread ASF GitHub Bot (JIRA)


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

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

> Netbeans update fails
> -
>
> Key: NETBEANS-2380
> URL: https://issues.apache.org/jira/browse/NETBEANS-2380
> Project: NetBeans
>  Issue Type: Bug
>  Components: updatecenters - Pluginportal
>Affects Versions: 11.0
> Environment: This is a fresh new installation of Nebeans 11 x64.
> on Windows Microsoft Windows [Version 10.0.16299.1029] x64.
> java -version
> java version "1.8.0_201"
> Java(TM) SE Runtime Environment (build 1.8.0_201-b09)
> Java HotSpot(TM) 64-Bit Server VM (build 25.201-b09, mixed mode)
> No proxy environment: Use System Proxy Settings
>Reporter: Fleischer Zoltán
>Priority: Major
>  Labels: pull-request-available
> Attachments: Screenshot_20190410_101509.png
>
>
> NetBeans Distribution URL: 
> https://netbeans.apache.org/nb/updates/11.0/updates.xml.gz does not work. In 
> Plugins -> Updates -> Check for Updates I get the following Warning message:
> *"Unable to connect to the NetBeans Distribution because of 
> [https://netbeans.org/projects/legacy/nb/updates/11.0/updates.xml.gz?unique=05c0c2c08-5b87-4a0f-bf18-aa3a2a445688_94c524cf-30e2-4081-901a-c407a0ee498f]*
> *Check your proxy settings or try again later. The server may be unavailable 
> at the moment. You may also want to make sure that your firewall is not 
> blocking network traffic."*
> But my proxy setting is correct. For example the Plugin Portal is working: 
> [http://plugins.netbeans.org/nbpluginportal/updates/11.0/catalog.xml.gz].
> The relevant part of the IDE Log:
> INFO [org.netbeans.modules.autoupdate.updateprovider.DownloadListener]: 
> Reading URL 
> https://netbeans.apache.org/nb/updates/11.0/updates.xml.gz?unique=05c0c2c08-5b87-4a0f-bf18-aa3a2a445688_94c524cf-30e2-4081-901a-c407a0ee498f
>  failed (java.io.FileNotFoundException: 
> https://netbeans.org/projects/legacy/nb/updates/11.0/updates.xml.gz?unique=05c0c2c08-5b87-4a0f-bf18-aa3a2a445688_94c524cf-30e2-4081-901a-c407a0ee498f)
> INFO [org.netbeans.modules.autoupdate.ui.Utilities]: 
> https://netbeans.org/projects/legacy/nb/updates/11.0/updates.xml.gz?unique=05c0c2c08-5b87-4a0f-bf18-aa3a2a445688_94c524cf-30e2-4081-901a-c407a0ee498f
> java.io.FileNotFoundException: 
> https://netbeans.org/projects/legacy/nb/updates/11.0/updates.xml.gz?unique=05c0c2c08-5b87-4a0f-bf18-aa3a2a445688_94c524cf-30e2-4081-901a-c407a0ee498f
>  at 
> sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1890)
>  at 
> sun.net.www.protocol.http.HttpURLConnection.access$200(HttpURLConnection.java:91)
>  at 
> sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1484)
>  at 
> sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1482)
>  at java.security.AccessController.doPrivileged(Native Method)
>  at 
> java.security.AccessController.doPrivilegedWithCombiner(AccessController.java:782)
>  at 
> sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1481)
>  at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:480)
>  at 
> sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:347)
>  at 
> org.netbeans.modules.autoupdate.updateprovider.NetworkAccess.checkRedirect(NetworkAccess.java:241)
>  at 
> org.netbeans.modules.autoupdate.updateprovider.NetworkAccess.access$700(NetworkAccess.java:57)
>  at 
> org.netbeans.modules.autoupdate.updateprovider.NetworkAccess$Task$2.call(NetworkAccess.java:160)
> Caused: java.io.FileNotFoundException: 
> https://netbeans.org/projects/legacy/nb/updates/11.0/updates.xml.gz?unique=05c0c2c08-5b87-4a0f-bf18-aa3a2a445688_94c524cf-30e2-4081-901a-c407a0ee498f
>  at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
>  at 
> sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
>  at 
> sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
>  at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
>  at 
> sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:1944)
>  at 
> sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:1939)
>  at java.security.AccessController.doPrivileged(Native Method)
>  at 
> sun.net.www.protocol.http.HttpURLConnection.getChainedException(HttpURLConnection.java:1938)
>  at 
> sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1508)
>  at 
> sun.net.www.protocol.http.HttpURLConnection.access$200(HttpURLConnection.java:91)
>  at 
> sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1484)
>  at 
> sun.net.w

[incubator-netbeans-website] 01/01: [NETBEANS-2080] Restoring .htaccess

2019-04-10 Thread vieiro
This is an automated email from the ASF dual-hosted git repository.

vieiro pushed a commit to branch hotfix/netbeans-2080
in repository https://gitbox.apache.org/repos/asf/incubator-netbeans-website.git

commit e08db44e08d24e44249e4e92f646d772d41da7f8
Author: Antonio Vieiro 
AuthorDate: Wed Apr 10 13:41:04 2019 +0200

[NETBEANS-2080] Restoring .htaccess

It seems .htaccess was redirecting the catalog file incorrectly.
---
 netbeans.apache.org/src/content/.htaccess | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/netbeans.apache.org/src/content/.htaccess 
b/netbeans.apache.org/src/content/.htaccess
index c9edda9..4b42e64 100644
--- a/netbeans.apache.org/src/content/.htaccess
+++ b/netbeans.apache.org/src/content/.htaccess
@@ -10,10 +10,10 @@ Redirect 302 /nb/report-issue 
https://issues.apache.org/jira/projects/NETBEANS/i
 #cgi mirror script
 Redirect 301 /download/maven/index.html /download/maven/index.cgi
 # Enable rewrite engine to redirect 404 pages to old netbeans.org 
(137.254.56.26)
-RewriteEngine On
+# RewriteEngine On
 # If the requested stuff is not a file ...
-RewriteCond "%{REQUEST_FILENAME}" "!-f"
+# RewriteCond "%{REQUEST_FILENAME}" "!-f"
 # ... nor a directory ...
-RewriteCond "%{REQUEST_FILENAME}" "!-d"
+# RewriteCond "%{REQUEST_FILENAME}" "!-d"
 # ... then redirect (302) to the legacy.netbeans.org server with Oracle era 
content
-RewriteRule (.*) "https://legacy.netbeans.org/$1"; [L,R=302]
+# RewriteRule (.*) "https://legacy.netbeans.org/$1"; [L,R=302]


-
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



[incubator-netbeans-website] branch hotfix/netbeans-2080 created (now e08db44)

2019-04-10 Thread vieiro
This is an automated email from the ASF dual-hosted git repository.

vieiro pushed a change to branch hotfix/netbeans-2080
in repository 
https://gitbox.apache.org/repos/asf/incubator-netbeans-website.git.


  at e08db44  [NETBEANS-2080] Restoring .htaccess

This branch includes the following new commits:

 new e08db44  [NETBEANS-2080] Restoring .htaccess

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



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

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



[jira] [Comment Edited] (NETBEANS-1456) Unsupported calc() function in CSS stylesheets

2019-04-10 Thread Pete Whelpton (JIRA)


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

Pete Whelpton edited comment on NETBEANS-1456 at 4/10/19 11:40 AM:
---

Can you provide some examples?

 

cal() is supported (in a very basic way), but I've done some digging and I can 
see straight away that there is a problem with nested parenthesis.  Before I go 
too much further, I'm curious if this is the only issue.

 

At the moment, when calc() is parsed, processing the contents of the 
parenthesis is delegated to the TokenAcceptor$GenericFunctionContent which 
seems to allow any token up until it hits a right parenthesis.  This is why 
nested parenthesis fail parsing.

 

I think there are two possible solutions:

1) Add a new method to TokenAcceptor to handle the specific case of calc()

2) Add the proper parsing rules to the default_module.properties file.  The 
problem with this approach is that GrammarParser treats + - * etc. as 
multiplicity modifiers to the grammer.  There already appears to be some logic 
to escape such characters in GrammarParser (by using ' or "), but from a little 
testing, doesn't seem to work how I thought it should so need to check / 
amend...

 

2) Is probably the more future proof solution...


was (Author: peedeeboy):
Can you provide some examples?

 

cal() is supported (in a very basic way), but I've done some digging and I can 
see straight away that there is a problem with nested parenthesis.  Before I go 
too much further, I'm curious if this is the only issue.

 

At the moment, when calc() is parsed, processing the contents of the 
parenthesis is delegated to the TokenAcceptor$GenericFunctionContent which 
seems to allow any token up until it hits a right parenthesis.  This is why 
nested parenthesis fail parsing.

 

I think there are two possible solutions:

1) Add a new method to TokenAcceptor to handle the specific case of calc()

2) Add the proper parsing rules to the default_module.properties file.  The 
problem with this approach is that GrammarParser treats + - * etc. as modifiers 
to the grammer.  There already appears to be some logic to escape such 
characters in GrammarParser (by using ' or "), but from a little testing, 
doesn't seem to work how I thought it should so need to check / amend...

 

2) Is probably the more future proof solution...

> Unsupported calc() function in CSS stylesheets
> --
>
> Key: NETBEANS-1456
> URL: https://issues.apache.org/jira/browse/NETBEANS-1456
> Project: NetBeans
>  Issue Type: Bug
>  Components: web - CSS Editor
>Affects Versions: 9.0
> Environment: Windows 10
>Reporter: Artur Stępień
>Priority: Minor
>  Labels: css, easy
>
> The following code in CSS Editor shows as a warning:
> {code:java}
> .modal-dialog-centered {
>   min-height: calc(100% - (0.5rem * 2));
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-1456) Unsupported calc() function in CSS stylesheets

2019-04-10 Thread Pete Whelpton (JIRA)


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

Pete Whelpton edited comment on NETBEANS-1456 at 4/10/19 11:39 AM:
---

Can you provide some examples?

 

cal() is supported (in a very basic way), but I've done some digging and I can 
see straight away that there is a problem with nested parenthesis.  Before I go 
too much further, I'm curious if this is the only issue.

 

At the moment, when calc() is parsed, processing the contents of the 
parenthesis is delegated to the TokenAcceptor$GenericFunctionContent which 
seems to allow any token up until it hits a right parenthesis.  This is why 
nested parenthesis fail parsing.

 

I think there are two possible solutions:

1) Add a new method to TokenAcceptor to handle the specific case of calc()

2) Add the proper parsing rules to the default_module.properties file.  The 
problem with this approach is that GrammarParser treats + - * etc. as modifiers 
to the grammer.  There already appears to be some logic to escape such 
characters in GrammarParser (by using ' or "), but from a little testing, 
doesn't seem to work how I thought it should so need to check / amend...

 

2) Is probably the more future proof solution...


was (Author: peedeeboy):
Can you provide some examples?

 

cal() is supported (in a very basic way), but I've done some digging and I can 
see straight away that there is a problem with nested parenthesis.  Before I go 
too much further, I'm curious if this is the only issue.

 

At the moment, when calc() is parsed, processing the contents of the 
parenthesis is delegated to the TokenAcceptor$GenericFunctionContent which 
seems to allow any token up until it hits a right parenthesis.  This is why 
nested parenthesis fail parsing.

 

I think there are two possible solutions:

1) Add a new method to TokenAcceptor to handle the specific case of calc()

2) Add the proper parsing rules to the default_module.properties file.  The 
problem with this approach is that GrammarParser treats + - * etc. as modifiers 
to the grammer.  There already appears to be some logic to escape such 
characters in GrammarParser (by using \' or "), but from a little testing, 
doesn't seem to work how I thought it should so need to check / amend...

 

2) Is probably the more future proof solution...

> Unsupported calc() function in CSS stylesheets
> --
>
> Key: NETBEANS-1456
> URL: https://issues.apache.org/jira/browse/NETBEANS-1456
> Project: NetBeans
>  Issue Type: Bug
>  Components: web - CSS Editor
>Affects Versions: 9.0
> Environment: Windows 10
>Reporter: Artur Stępień
>Priority: Minor
>  Labels: css, easy
>
> The following code in CSS Editor shows as a warning:
> {code:java}
> .modal-dialog-centered {
>   min-height: calc(100% - (0.5rem * 2));
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2388) NullPointerException after Background scanning of projects in Netbeans 11

2019-04-10 Thread JIRA
Przemysław Sobala created NETBEANS-2388:
---

 Summary: NullPointerException after Background scanning of 
projects in Netbeans 11
 Key: NETBEANS-2388
 URL: https://issues.apache.org/jira/browse/NETBEANS-2388
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 11.0
 Environment: OS: Fedora 29
Reporter: Przemysław Sobala
 Attachments: IDE Log.txt, UI Log.xml

Hello

After cleaning cache dir and starting Netbeans 11 it does Background scanning 
of projects and notifies of an Unexpected Exception.

Then it marks some .java files as erroneous.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-1456) Unsupported calc() function in CSS stylesheets

2019-04-10 Thread Pete Whelpton (JIRA)


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

Pete Whelpton commented on NETBEANS-1456:
-

Can you provide some examples?

 

cal() is supported (in a very basic way), but I've done some digging and I can 
see straight away that there is a problem with nested parenthesis.  Before I go 
too much further, I'm curious if this is the only issue.

 

At the moment, when calc() is parsed, processing the contents of the 
parenthesis is delegated to the TokenAcceptor$GenericFunctionContent which 
seems to allow any token up until it hits a right parenthesis.  This is why 
nested parenthesis fail parsing.

 

I think there are two possible solutions:

1) Add a new method to TokenAcceptor to handle the specific case of calc()

2) Add the proper parsing rules to the default_module.properties file.  The 
problem with this approach is that GrammarParser treats + - * etc. as modifiers 
to the grammer.  There already appears to be some logic to escape such 
characters in GrammarParser (by using \' or "), but from a little testing, 
doesn't seem to work how I thought it should so need to check / amend...

 

2) Is probably the more future proof solution...

> Unsupported calc() function in CSS stylesheets
> --
>
> Key: NETBEANS-1456
> URL: https://issues.apache.org/jira/browse/NETBEANS-1456
> Project: NetBeans
>  Issue Type: Bug
>  Components: web - CSS Editor
>Affects Versions: 9.0
> Environment: Windows 10
>Reporter: Artur Stępień
>Priority: Minor
>  Labels: css, easy
>
> The following code in CSS Editor shows as a warning:
> {code:java}
> .modal-dialog-centered {
>   min-height: calc(100% - (0.5rem * 2));
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2374) Editor does not show UTF-8 codepoint as Unicode character

2019-04-10 Thread Alessandro Falappa (JIRA)


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

Alessandro Falappa edited comment on NETBEANS-2374 at 4/10/19 9:47 AM:
---

I stumbled upon this behaviour just now.

>From my investigation the problem is limited to Gradle projects, where there 
>is no way to set the file encoding at project level like in Maven projects. 
>All the files in a Gradle project inherit the platform encoding (i.e. under 
>Windows the win-1252 encoding, under Linux the issue is not as obvious because 
>the platform encoding is frequently UTF-8).

As a workaround one could install the [Encoding Support 
plugin|http://plugins.netbeans.org/plugin/60487/encoding-support] and change 
the encoding for the files you are interested in but that is not very practical.

A more sensible solution should be to have a file encoding setting at project 
level and the various editor should use that when opening all kind of files in 
the project.


was (Author: alexfalappa):
I stumbled upon this behaviour just now.

>From my investigation the problem is limited to Gradle projects, where there 
>is no way to set the file encoding at project level like in Maven projects. 
>All the files in a Gradle project inherit the platform encoding (i.e. under 
>Windows the win-1252 encoding).

As a workaround one could install the [Encoding Support 
plugin|http://plugins.netbeans.org/plugin/60487/encoding-support] and change 
the encoding for the files you are interested in but that is not very practical.

A more sensible solution should be to have a file encoding setting at project 
level and the various editor should use that when opening all kind of files in 
the project.

> Editor does not show UTF-8 codepoint as Unicode character
> -
>
> Key: NETBEANS-2374
> URL: https://issues.apache.org/jira/browse/NETBEANS-2374
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Other, projects - Gradle
>Affects Versions: 11.0
> Environment: Netbeans 11
> Gradle 5
> Java 11
>Reporter: Netbeans User 2019
>Priority: Critical
>
> There is additional issue (or not reported new feature on Netbeans 11) as 
> seems that Netbeans "Editor" stop understand UTF-8 so presents all characters 
> instead of showing just exact Unicode character of that codepoint.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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] [Assigned] (NETBEANS-2387) Gradle tasks (Navigator) do not scroll down and show recents at the top

2019-04-10 Thread Alessandro Falappa (JIRA)


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

Alessandro Falappa reassigned NETBEANS-2387:


Assignee: Laszlo Kishalmi

> Gradle tasks (Navigator) do not scroll down and show recents at the top
> ---
>
> Key: NETBEANS-2387
> URL: https://issues.apache.org/jira/browse/NETBEANS-2387
> Project: NetBeans
>  Issue Type: Improvement
>  Components: projects - Gradle
>Affects Versions: 11.0
> Environment: Netbeans 11 
> Gradle 5 
> Java 11 
>Reporter: Netbeans User 2019
>Assignee: Laszlo Kishalmi
>Priority: Major
>
> Navigator is always scroll down so it is needed at least in my case scroll up 
> mostly to the right task to run.
> Could you add a category recent tasks and scroll to that category or just 
> give a option to show that always collapsed?



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2387) Gradle tasks (Navigator) do not scroll down and show recents at the top

2019-04-10 Thread Alessandro Falappa (JIRA)


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

Alessandro Falappa commented on NETBEANS-2387:
--

Noticed that myself too.

I vote this, the behaviour is a bit annoying.

> Gradle tasks (Navigator) do not scroll down and show recents at the top
> ---
>
> Key: NETBEANS-2387
> URL: https://issues.apache.org/jira/browse/NETBEANS-2387
> Project: NetBeans
>  Issue Type: Improvement
>  Components: projects - Gradle
>Affects Versions: 11.0
> Environment: Netbeans 11 
> Gradle 5 
> Java 11 
>Reporter: Netbeans User 2019
>Priority: Major
>
> Navigator is always scroll down so it is needed at least in my case scroll up 
> mostly to the right task to run.
> Could you add a category recent tasks and scroll to that category or just 
> give a option to show that always collapsed?



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2374) Editor does not show UTF-8 codepoint as Unicode character

2019-04-10 Thread Alessandro Falappa (JIRA)


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

Alessandro Falappa edited comment on NETBEANS-2374 at 4/10/19 9:39 AM:
---

To reproduce the issue generate a gradle project with the [Spring 
Initializr|http://start.spring.io/] scaffolding web service and open the 
{{HELP.md}} file, the last line shows some garbled chars after "_Gradle Build 
Scans_" text instead of a hyphen.

The {{HELP.md}} file should be opened with *UTF-8* encoding while it has 
*Windows-1252* encoding.


was (Author: alexfalappa):
To reproduce the issue generate a gradle project with the [Spring 
Initializr|http://start.spring.io/] scaffolding web service and open the 
{{HELP.md}} file, the last line shows some garbled chars after "Gradle Build 
Scans" text instead of a hyphen.

> Editor does not show UTF-8 codepoint as Unicode character
> -
>
> Key: NETBEANS-2374
> URL: https://issues.apache.org/jira/browse/NETBEANS-2374
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Other, java - Editor, projects - Gradle
>Affects Versions: 11.0
> Environment: Netbeans 11
> Gradle 5
> Java 11
>Reporter: Netbeans User 2019
>Priority: Critical
>
> There is additional issue (or not reported new feature on Netbeans 11) as 
> seems that Netbeans "Editor" stop understand UTF-8 so presents all characters 
> instead of showing just exact Unicode character of that codepoint.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2374) Editor does not show UTF-8 codepoint as Unicode character

2019-04-10 Thread Alessandro Falappa (JIRA)


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

Alessandro Falappa updated NETBEANS-2374:
-
Component/s: (was: java - Editor)

> Editor does not show UTF-8 codepoint as Unicode character
> -
>
> Key: NETBEANS-2374
> URL: https://issues.apache.org/jira/browse/NETBEANS-2374
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Other, projects - Gradle
>Affects Versions: 11.0
> Environment: Netbeans 11
> Gradle 5
> Java 11
>Reporter: Netbeans User 2019
>Priority: Critical
>
> There is additional issue (or not reported new feature on Netbeans 11) as 
> seems that Netbeans "Editor" stop understand UTF-8 so presents all characters 
> instead of showing just exact Unicode character of that codepoint.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2374) Editor does not show UTF-8 codepoint as Unicode character

2019-04-10 Thread Alessandro Falappa (JIRA)


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

Alessandro Falappa commented on NETBEANS-2374:
--

To reproduce the issue generate a gradle project with the [Spring 
Initializr|http://start.spring.io/] scaffolding web service and open the 
{{HELP.md}} file, the last line shows some garbled chars after "Gradle Build 
Scans" text instead of a hyphen.

> Editor does not show UTF-8 codepoint as Unicode character
> -
>
> Key: NETBEANS-2374
> URL: https://issues.apache.org/jira/browse/NETBEANS-2374
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Other, java - Editor, projects - Gradle
>Affects Versions: 11.0
> Environment: Netbeans 11
> Gradle 5
> Java 11
>Reporter: Netbeans User 2019
>Priority: Critical
>
> There is additional issue (or not reported new feature on Netbeans 11) as 
> seems that Netbeans "Editor" stop understand UTF-8 so presents all characters 
> instead of showing just exact Unicode character of that codepoint.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2374) Editor does not show UTF-8 codepoint as Unicode character

2019-04-10 Thread Alessandro Falappa (JIRA)


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

Alessandro Falappa commented on NETBEANS-2374:
--

I stumbled upon this behaviour just now.

>From my investigation the problem is limited to Gradle projects, where there 
>is no way to set the file encoding at project level like in Maven projects. 
>All the files in a Gradle project inherit the platform encoding (i.e. under 
>Windows the win-1252 encoding).

As a workaround one could install the [Encoding Support 
plugin|http://plugins.netbeans.org/plugin/60487/encoding-support] and change 
the encoding for the files you are interested in but that is not very practical.

A more sensible solution should be to have a file encoding setting at project 
level and the various editor should use that when opening all kind of files in 
the project.

> Editor does not show UTF-8 codepoint as Unicode character
> -
>
> Key: NETBEANS-2374
> URL: https://issues.apache.org/jira/browse/NETBEANS-2374
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Other, java - Editor, projects - Gradle
>Affects Versions: 11.0
> Environment: Netbeans 11
> Gradle 5
> Java 11
>Reporter: Netbeans User 2019
>Priority: Critical
>
> There is additional issue (or not reported new feature on Netbeans 11) as 
> seems that Netbeans "Editor" stop understand UTF-8 so presents all characters 
> instead of showing just exact Unicode character of that codepoint.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2374) Editor does not show UTF-8 codepoint as Unicode character

2019-04-10 Thread Alessandro Falappa (JIRA)


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

Alessandro Falappa updated NETBEANS-2374:
-
Description: There is additional issue (or not reported new feature on 
Netbeans 11) as seems that Netbeans "Editor" stop understand UTF-8 so presents 
all characters instead of showing just exact Unicode character of that 
codepoint.  (was: There is additional issue (or not reported new feature on 
Netbeans 11) as seems that Netbeans "Editor" stop understand UTF-8

so presents all characters instead of showing just exact Unicode character of 
that

codepoint.)

> Editor does not show UTF-8 codepoint as Unicode character
> -
>
> Key: NETBEANS-2374
> URL: https://issues.apache.org/jira/browse/NETBEANS-2374
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Other, java - Editor, projects - Gradle
>Affects Versions: 11.0
> Environment: Netbeans 11
> Gradle 5
> Java 11
>Reporter: Netbeans User 2019
>Priority: Critical
>
> There is additional issue (or not reported new feature on Netbeans 11) as 
> seems that Netbeans "Editor" stop understand UTF-8 so presents all characters 
> instead of showing just exact Unicode character of that codepoint.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2374) Editor does not show UTF-8 codepoint as Unicode character

2019-04-10 Thread Alessandro Falappa (JIRA)


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

Alessandro Falappa updated NETBEANS-2374:
-
Component/s: projects - Gradle

> Editor does not show UTF-8 codepoint as Unicode character
> -
>
> Key: NETBEANS-2374
> URL: https://issues.apache.org/jira/browse/NETBEANS-2374
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Other, java - Editor, projects - Gradle
>Affects Versions: 11.0
> Environment: Netbeans 11
> Gradle 5
> Java 11
>Reporter: Netbeans User 2019
>Priority: Critical
>
> There is additional issue (or not reported new feature on Netbeans 11) as 
> seems that Netbeans "Editor" stop understand UTF-8
> so presents all characters instead of showing just exact Unicode character of 
> that
> codepoint.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2384) multi module maven build stops with exception

2019-04-10 Thread Tobias Warneke (JIRA)


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

Tobias Warneke commented on NETBEANS-2384:
--

Unfortunately, it is not an open project. I copied the pom.xml into a normal 
java maven project and it worked without the exception.

This project is an angular project, which I built using maven, but the minimal 
example does not even this. It stops simply the LOG output and I am getting the 
already given Exception:

here is the Output - Windows contents:

 

--

--- maven-clean-plugin:2.5:clean (default-clean) @ gm.admin-frontend ---
Deleting D:\work\gajamatrixbox\browser\gm.admin-frontend\target

--- maven-enforcer-plugin:3.0.0-M2:enforce (enforce-no-snapshots) @ 
gm.admin-frontend ---

--- jacoco-maven-plugin:0.7.7.201606060606:prepare-agent (agent) @ 
gm.admin-frontend ---
argLine set to 
-javaagent:D:\\maven_repository\\repository\\org\\jacoco\\org.jacoco.agent\\0.7.7.201606060606\\org.jacoco.agent-0.7.7.201606060606-runtime.jar=destfile=D:\\work\\gajamatrixbox\\browser\\gm.admin-frontend\\target\\jacoco.exec,append=true

--- maven-resources-plugin:2.4.3:resources (default-resources) @ 
gm.admin-frontend ---
Using 'windows-1252' encoding to copy filtered resources.
skip non existing resourceDirectory xxx\src\main\resources

--- maven-compiler-plugin:3.8.0:compile (default-compile) @ gm.admin-frontend 
---
No sources to compile

--- maven-checkstyle-plugin:3.0.0:check (verify-style) @ gm.admin-frontend ---

--- maven-resources-plugin:2.4.3:testResources (default-testResources) @ 
gm.admin-frontend ---
Using 'windows-1252' encoding to copy filtered resources.
skip non existing resourceDirectory xxx\src\test\resources

--- maven-compiler-plugin:3.8.0:testCompile (default-testCompile) @ 
gm.admin-frontend ---
No sources to compile

--

 

Here it stops with the Exception. Maybe it is recognized as a JavaEE project, 
which was not the case using Netbeans 10. I already switched off the compiler 
plugin. Then the Exception occurs after the resource plugin runs.

 

 

here is the build section of my effective pom. Nothing fancy about it.

--


gm.admin-frontend-11.1.4



maven-antrun-plugin
1.3


maven-assembly-plugin
2.2-beta-5


maven-failsafe-plugin
2.22.1


maven-jar-plugin
3.1.0


org.codehaus.mojo
buildnumber-maven-plugin
1.4


maven-source-plugin
3.0.1


maven-checkstyle-plugin
2.17


com.github.searls
jasmine-maven-plugin
1.3.1.5


org.glassfish.embedded
maven-embedded-glassfish-plugin
5.0


maven-dependency-plugin
3.1.1


maven-release-plugin
2.3.2


maven-compiler-plugin
3.8.0

1.8
1.8
windows-1252



maven-surefire-plugin
2.22.1

1
false
-Djava.net.preferIPv4Stack=true -Xmx1g

true




maven-surefire-report-plugin
2.22.1


maven-javadoc-plugin
2.10.4


attach-javadocs

jar


-Xdoclint:none





maven-site-plugin
3.7





maven-enforcer-plugin
3.0.0-M2


enforce-no-snapshots

enforce




No Snapshots Allowed!
true


1.8.0



true





maven-surefire-plugin
2.22.1

1
false
-Djava.net.preferIPv4Stack=true -Xmx1g

true




maven-failsafe-plugin
2.22.1



integration-test
verify




1
false



com.amashchenko.maven.plugin
gitflow-maven-plugin
1.11.0

false
${M2_HOME}/bin/mvn
true
false
true



org.jacoco
jacoco-maven-plugin
0.7.7.201606060606


agent

prepare-agent




D:\work\gajamatrixbox\browser\gm.admin-frontend/target/jacoco.exec
true



maven-resources-plugin
2.4.3

windows-1252





--

> multi module maven build stops with exception
> -
>
> Key: NETBEANS-2384
> URL: https://issues.apache.org/jira/browse/NETBEANS-2384
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 11.0
>Reporter: Tobias Warneke
>Priority: Critical
>
> Using Netbeans 10, it works.
>  
>  
> SEVERE [org.openide.util.RequestProcessor]: Error in RequestProcessor 
> org.netbeans.modules.maven.execute.CommandLineOutputHandler$Output
> java.lang.NullPointerException
>  at 
> org.netbeans.modules.maven.api.PluginPropertyUtils.createEvaluator(PluginPropertyUtils.java:511)
>  at 
> org.netbeans.modules.maven.output.TestOutputListenerProvider.processLine(TestOutputListenerProvider.java:127)
>  at 
> org.netbeans.modules.maven.execute.AbstractOutputHandler.processLine(AbstractOutputHandler.java:293)
>  at 
> org.netbeans.modules.maven.execute.CommandLineOutputHandler$Output.run(CommandLineOutputHandler.java:330)
>  at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
>  at 
> org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
>  at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
> [catch] at 
> org.openide.util.RequestProcessor$Process

[jira] [Commented] (NETBEANS-2384) multi module maven build stops with exception

2019-04-10 Thread Eric Barboni (JIRA)


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

Eric Barboni commented on NETBEANS-2384:


Hi is it possible to have your configuration because I cannot reproduce this 
issue. Eventualy the pom of the submodule, or the project if its open of course 
?

> multi module maven build stops with exception
> -
>
> Key: NETBEANS-2384
> URL: https://issues.apache.org/jira/browse/NETBEANS-2384
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 11.0
>Reporter: Tobias Warneke
>Priority: Critical
>
> Using Netbeans 10, it works.
>  
>  
> SEVERE [org.openide.util.RequestProcessor]: Error in RequestProcessor 
> org.netbeans.modules.maven.execute.CommandLineOutputHandler$Output
> java.lang.NullPointerException
>  at 
> org.netbeans.modules.maven.api.PluginPropertyUtils.createEvaluator(PluginPropertyUtils.java:511)
>  at 
> org.netbeans.modules.maven.output.TestOutputListenerProvider.processLine(TestOutputListenerProvider.java:127)
>  at 
> org.netbeans.modules.maven.execute.AbstractOutputHandler.processLine(AbstractOutputHandler.java:293)
>  at 
> org.netbeans.modules.maven.execute.CommandLineOutputHandler$Output.run(CommandLineOutputHandler.java:330)
>  at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
>  at 
> org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45)
>  at org.openide.util.lookup.Lookups.executeWith(Lookups.java:278)
> [catch] at 
> org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2033)
> INFO [org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater]: 
> Resolving dependencies took: 56 ms



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2380) Netbeans update fails

2019-04-10 Thread Jan Kowal (JIRA)


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

Jan Kowal commented on NETBEANS-2380:
-

This is not Netbeans IDE error. It is servers misconfiguration:
{code:java}
$ curl -I https://netbeans.apache.org/nb/updates/11.0/updates.xml.gz
HTTP/1.1 302 Found
Location: https://legacy.netbeans.org/nb/updates/11.0/updates.xml.gz

$ curl -I https://legacy.netbeans.org/nb/updates/11.0/updates.xml.gz
HTTP/1.1 302 Found
Location: https://netbeans.org/projects/legacy/nb/updates/11.0/updates.xml.gz

$ curl -I https://netbeans.org/projects/legacy/nb/updates/11.0/updates.xml.gz
HTTP/1.1 404 Not Found{code}

> Netbeans update fails
> -
>
> Key: NETBEANS-2380
> URL: https://issues.apache.org/jira/browse/NETBEANS-2380
> Project: NetBeans
>  Issue Type: Bug
>  Components: updatecenters - Pluginportal
>Affects Versions: 11.0
> Environment: This is a fresh new installation of Nebeans 11 x64.
> on Windows Microsoft Windows [Version 10.0.16299.1029] x64.
> java -version
> java version "1.8.0_201"
> Java(TM) SE Runtime Environment (build 1.8.0_201-b09)
> Java HotSpot(TM) 64-Bit Server VM (build 25.201-b09, mixed mode)
> No proxy environment: Use System Proxy Settings
>Reporter: Fleischer Zoltán
>Priority: Major
> Attachments: Screenshot_20190410_101509.png
>
>
> NetBeans Distribution URL: 
> https://netbeans.apache.org/nb/updates/11.0/updates.xml.gz does not work. In 
> Plugins -> Updates -> Check for Updates I get the following Warning message:
> *"Unable to connect to the NetBeans Distribution because of 
> [https://netbeans.org/projects/legacy/nb/updates/11.0/updates.xml.gz?unique=05c0c2c08-5b87-4a0f-bf18-aa3a2a445688_94c524cf-30e2-4081-901a-c407a0ee498f]*
> *Check your proxy settings or try again later. The server may be unavailable 
> at the moment. You may also want to make sure that your firewall is not 
> blocking network traffic."*
> But my proxy setting is correct. For example the Plugin Portal is working: 
> [http://plugins.netbeans.org/nbpluginportal/updates/11.0/catalog.xml.gz].
> The relevant part of the IDE Log:
> INFO [org.netbeans.modules.autoupdate.updateprovider.DownloadListener]: 
> Reading URL 
> https://netbeans.apache.org/nb/updates/11.0/updates.xml.gz?unique=05c0c2c08-5b87-4a0f-bf18-aa3a2a445688_94c524cf-30e2-4081-901a-c407a0ee498f
>  failed (java.io.FileNotFoundException: 
> https://netbeans.org/projects/legacy/nb/updates/11.0/updates.xml.gz?unique=05c0c2c08-5b87-4a0f-bf18-aa3a2a445688_94c524cf-30e2-4081-901a-c407a0ee498f)
> INFO [org.netbeans.modules.autoupdate.ui.Utilities]: 
> https://netbeans.org/projects/legacy/nb/updates/11.0/updates.xml.gz?unique=05c0c2c08-5b87-4a0f-bf18-aa3a2a445688_94c524cf-30e2-4081-901a-c407a0ee498f
> java.io.FileNotFoundException: 
> https://netbeans.org/projects/legacy/nb/updates/11.0/updates.xml.gz?unique=05c0c2c08-5b87-4a0f-bf18-aa3a2a445688_94c524cf-30e2-4081-901a-c407a0ee498f
>  at 
> sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1890)
>  at 
> sun.net.www.protocol.http.HttpURLConnection.access$200(HttpURLConnection.java:91)
>  at 
> sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1484)
>  at 
> sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1482)
>  at java.security.AccessController.doPrivileged(Native Method)
>  at 
> java.security.AccessController.doPrivilegedWithCombiner(AccessController.java:782)
>  at 
> sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1481)
>  at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:480)
>  at 
> sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:347)
>  at 
> org.netbeans.modules.autoupdate.updateprovider.NetworkAccess.checkRedirect(NetworkAccess.java:241)
>  at 
> org.netbeans.modules.autoupdate.updateprovider.NetworkAccess.access$700(NetworkAccess.java:57)
>  at 
> org.netbeans.modules.autoupdate.updateprovider.NetworkAccess$Task$2.call(NetworkAccess.java:160)
> Caused: java.io.FileNotFoundException: 
> https://netbeans.org/projects/legacy/nb/updates/11.0/updates.xml.gz?unique=05c0c2c08-5b87-4a0f-bf18-aa3a2a445688_94c524cf-30e2-4081-901a-c407a0ee498f
>  at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
>  at 
> sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
>  at 
> sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
>  at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
>  at 
> sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:1944)
>  at 
> sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:19

[jira] [Updated] (NETBEANS-2380) Netbeans update fails

2019-04-10 Thread Jan Kowal (JIRA)


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

Jan Kowal updated NETBEANS-2380:

Attachment: Screenshot_20190410_101509.png

> Netbeans update fails
> -
>
> Key: NETBEANS-2380
> URL: https://issues.apache.org/jira/browse/NETBEANS-2380
> Project: NetBeans
>  Issue Type: Bug
>  Components: updatecenters - Pluginportal
>Affects Versions: 11.0
> Environment: This is a fresh new installation of Nebeans 11 x64.
> on Windows Microsoft Windows [Version 10.0.16299.1029] x64.
> java -version
> java version "1.8.0_201"
> Java(TM) SE Runtime Environment (build 1.8.0_201-b09)
> Java HotSpot(TM) 64-Bit Server VM (build 25.201-b09, mixed mode)
> No proxy environment: Use System Proxy Settings
>Reporter: Fleischer Zoltán
>Priority: Major
> Attachments: Screenshot_20190410_101509.png
>
>
> NetBeans Distribution URL: 
> https://netbeans.apache.org/nb/updates/11.0/updates.xml.gz does not work. In 
> Plugins -> Updates -> Check for Updates I get the following Warning message:
> *"Unable to connect to the NetBeans Distribution because of 
> [https://netbeans.org/projects/legacy/nb/updates/11.0/updates.xml.gz?unique=05c0c2c08-5b87-4a0f-bf18-aa3a2a445688_94c524cf-30e2-4081-901a-c407a0ee498f]*
> *Check your proxy settings or try again later. The server may be unavailable 
> at the moment. You may also want to make sure that your firewall is not 
> blocking network traffic."*
> But my proxy setting is correct. For example the Plugin Portal is working: 
> [http://plugins.netbeans.org/nbpluginportal/updates/11.0/catalog.xml.gz].
> The relevant part of the IDE Log:
> INFO [org.netbeans.modules.autoupdate.updateprovider.DownloadListener]: 
> Reading URL 
> https://netbeans.apache.org/nb/updates/11.0/updates.xml.gz?unique=05c0c2c08-5b87-4a0f-bf18-aa3a2a445688_94c524cf-30e2-4081-901a-c407a0ee498f
>  failed (java.io.FileNotFoundException: 
> https://netbeans.org/projects/legacy/nb/updates/11.0/updates.xml.gz?unique=05c0c2c08-5b87-4a0f-bf18-aa3a2a445688_94c524cf-30e2-4081-901a-c407a0ee498f)
> INFO [org.netbeans.modules.autoupdate.ui.Utilities]: 
> https://netbeans.org/projects/legacy/nb/updates/11.0/updates.xml.gz?unique=05c0c2c08-5b87-4a0f-bf18-aa3a2a445688_94c524cf-30e2-4081-901a-c407a0ee498f
> java.io.FileNotFoundException: 
> https://netbeans.org/projects/legacy/nb/updates/11.0/updates.xml.gz?unique=05c0c2c08-5b87-4a0f-bf18-aa3a2a445688_94c524cf-30e2-4081-901a-c407a0ee498f
>  at 
> sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1890)
>  at 
> sun.net.www.protocol.http.HttpURLConnection.access$200(HttpURLConnection.java:91)
>  at 
> sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1484)
>  at 
> sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1482)
>  at java.security.AccessController.doPrivileged(Native Method)
>  at 
> java.security.AccessController.doPrivilegedWithCombiner(AccessController.java:782)
>  at 
> sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1481)
>  at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:480)
>  at 
> sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:347)
>  at 
> org.netbeans.modules.autoupdate.updateprovider.NetworkAccess.checkRedirect(NetworkAccess.java:241)
>  at 
> org.netbeans.modules.autoupdate.updateprovider.NetworkAccess.access$700(NetworkAccess.java:57)
>  at 
> org.netbeans.modules.autoupdate.updateprovider.NetworkAccess$Task$2.call(NetworkAccess.java:160)
> Caused: java.io.FileNotFoundException: 
> https://netbeans.org/projects/legacy/nb/updates/11.0/updates.xml.gz?unique=05c0c2c08-5b87-4a0f-bf18-aa3a2a445688_94c524cf-30e2-4081-901a-c407a0ee498f
>  at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
>  at 
> sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
>  at 
> sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
>  at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
>  at 
> sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:1944)
>  at 
> sun.net.www.protocol.http.HttpURLConnection$10.run(HttpURLConnection.java:1939)
>  at java.security.AccessController.doPrivileged(Native Method)
>  at 
> sun.net.www.protocol.http.HttpURLConnection.getChainedException(HttpURLConnection.java:1938)
>  at 
> sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1508)
>  at 
> sun.net.www.protocol.http.HttpURLConnection.access$200(HttpURLConnection.java:91)
>  at 
> sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1484)
>  at 
> sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConne

[jira] [Updated] (NETBEANS-2133) Netbeans overwrite a newer file on a remove server

2019-04-10 Thread Jan Kowal (JIRA)


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

Jan Kowal updated NETBEANS-2133:

Affects Version/s: 11.0

>  Netbeans overwrite a newer file on a remove server
> ---
>
> Key: NETBEANS-2133
> URL: https://issues.apache.org/jira/browse/NETBEANS-2133
> Project: NetBeans
>  Issue Type: Improvement
>Affects Versions: 10.0, 11.0
>Reporter: Jan Kowal
>Priority: Major
>  Labels: PHP, overwriteExisting, remote, save
> Attachments: other ide notify remote changes settings.png
>
>
> In PHP project created form remote server: {{File > New Project > PHP > PHP 
> Application from Remote Server on save file/on run remote files are 
> overwritten without any warning.}}
> The other IDE I used, shows a warning when save file to server and the remote 
> file is changed.
> This can be a useful and desirable function.
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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-2387) Gradle tasks (Navigator) do not scroll down and show recents at the top

2019-04-10 Thread Netbeans User 2019 (JIRA)
Netbeans User 2019 created NETBEANS-2387:


 Summary: Gradle tasks (Navigator) do not scroll down and show 
recents at the top
 Key: NETBEANS-2387
 URL: https://issues.apache.org/jira/browse/NETBEANS-2387
 Project: NetBeans
  Issue Type: Improvement
  Components: projects - Gradle
Affects Versions: 11.0
 Environment: Netbeans 11 
Gradle 5 
Java 11 
Reporter: Netbeans User 2019


Navigator is always scroll down so it is needed at least in my case scroll up 
mostly to the right task to run.

Could you add a category recent tasks and scroll to that category or just give 
a option to show that always collapsed?



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
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