[jira] [Closed] (NETBEANS-3787) FlatLAF: activated tab bold line not correct with different project tab colors

2020-07-12 Thread Tobias Warneke (Jira)


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

Tobias Warneke closed NETBEANS-3787.

Resolution: Fixed

> FlatLAF: activated tab bold line not correct with different project tab colors
> --
>
> Key: NETBEANS-3787
> URL: https://issues.apache.org/jira/browse/NETBEANS-3787
> Project: NetBeans
>  Issue Type: Bug
>  Components: FlatLaf, ide - UI
>Affects Versions: 11.3
> Environment: Netbeans 11.3 beta2 with FlatLAF
>Reporter: Tobias Warneke
>Assignee: Karl Tauber
>Priority: Major
>  Labels: pull-request-available
> Attachments: image-2020-02-03-10-48-17-043.png, 
> image-2020-02-03-10-49-22-748.png
>
>  Time Spent: 1h 40m
>  Remaining Estimate: 0h
>
> I attached two screenshots. The LoginDeniedException - source file tab has a 
> "correct" blue thick activated line but the GenericHandler has not.
> It somehow shows the project color within the "activation line". 
> Is this by design? I love the contrast of this line to the white background 
> of an activated tab.



--
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] [Closed] (NETBEANS-3554) problematic jaxb constellation (package-info.java)

2020-07-12 Thread Tobias Warneke (Jira)


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

Tobias Warneke closed NETBEANS-3554.

Resolution: Fixed

> problematic jaxb constellation (package-info.java)
> --
>
> Key: NETBEANS-3554
> URL: https://issues.apache.org/jira/browse/NETBEANS-3554
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - JDK Problems
>Affects Versions: 10.0, 11.1
>Reporter: Tobias Warneke
>Priority: Major
>
> I don't know, if this is a bug. At least it is a problem, I cannot solve. 
> I implemented a JAXB serializable class (named "configuration") with XmlRoot 
> – annotation. Addionaly there is a package-info.java file, to config a 
> package wide schema. There are running at least 20 unit tests covering all 
> kinds of marshalling / unmarshalling things.
> So this is build using maven and it builds/compiles/runs fine using JDK 8 - 
> 13. As dependencies I use version 2.3.0 of jaxp-api, jaxb-impl, ... This is 
> not a Netbeans module.
> A minimal XML would look like:
> {{}}
> {{http://gingko.de/prjsetup/schema";>}}
> {{    }}
> {{}}
>  
> So here comes the problem. If I use this JAR within a Netbeans platform 
> application, all runs fine using JDK 8. But using a higher JDK version, it 
> seems as if the *package-info.java* is skipped and opening such an XML file 
> results in:
> {{javax.xml.bind.UnmarshalException: unexpected element 
> (URI:"http://gingko.de/prjsetup/schema";, lokal:"configuration"). Expected 
> elements are 
> <{}configuration>,<{}geoLayer>,<{}solution>,<{}solutionRevision>}}
> So somehow the information from the *package-info.java* file is not 
> considered. 
> By the way this JAR is used from a Netbeans module. The complete package is 
> public using a wrapper Netbeans module.
> In which direction should I investigate further? Is this a simple 
> configuration problem?



--
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-4578) javadoc formatting wraps tag

2020-07-12 Thread Tobias Warneke (Jira)


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

Tobias Warneke updated NETBEANS-4578:
-
Description: 
The formatter wraps my  tags within my javadocs. I have a Javadoc like

 
{code:java}
/**
 * 
 * 
 * {@code
 *    //some code
 * }
 * 
*
*/{code}
formatting this fil results in
{code:java}
/**
 * 
 * <
 *  pre>                                <-- problem
 * {@code
 *    //some code
 * }
 * 
*
*/{code}
The problem seems only to occur if ** is preceded by **.

This problem occurs even if only *enable comments formatting* is switched on 
and the rest is off.

  was:
The formatter wraps my  tags within my javadocs. I have a Javadoc like

 
{code:java}
/**
* 
 * {@code
 *    //some code
 * }
 * 
*
*/{code}
formatting this fil results in
{code:java}
/**
* <
*  pre>                                <-- problem
 * {@code
 *    //some code
 * }
 * 
*
*/{code}
 

This problem occurs even if only *enable comments formatting* is switched on 
and the rest is off.


> javadoc formatting wraps  tag
> --
>
> Key: NETBEANS-4578
> URL: https://issues.apache.org/jira/browse/NETBEANS-4578
> Project: NetBeans
>  Issue Type: Bug
>  Components: editor - Formatting & Indentation
>Affects Versions: 12.0
>Reporter: Tobias Warneke
>Priority: Major
>
> The formatter wraps my  tags within my javadocs. I have a Javadoc like
>  
> {code:java}
> /**
>  * 
>  * 
>  * {@code
>  *    //some code
>  * }
>  * 
> *
> */{code}
> formatting this fil results in
> {code:java}
> /**
>  * 
>  * <
>  *  pre>                                <-- problem
>  * {@code
>  *    //some code
>  * }
>  * 
> *
> */{code}
> The problem seems only to occur if ** is preceded by **.
> This problem occurs even if only *enable comments formatting* is switched on 
> and the rest is off.



--
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-4578) javadoc formatting wraps tag

2020-07-12 Thread Tobias Warneke (Jira)
Tobias Warneke created NETBEANS-4578:


 Summary: javadoc formatting wraps  tag
 Key: NETBEANS-4578
 URL: https://issues.apache.org/jira/browse/NETBEANS-4578
 Project: NetBeans
  Issue Type: Bug
  Components: editor - Formatting & Indentation
Affects Versions: 12.0
Reporter: Tobias Warneke


The formatter wraps my  tags within my javadocs. I have a Javadoc like

 
{code:java}
/**
* 
 * {@code
 *    //some code
 * }
 * 
*
*/{code}
formatting this fil results in
{code:java}
/**
* <
*  pre>                                <-- problem
 * {@code
 *    //some code
 * }
 * 
*
*/{code}
 

This problem occurs even if only *enable comments formatting* is switched on 
and the rest is off.



--
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-3787) FlatLAF: activated tab bold line not correct with different project tab colors

2020-02-03 Thread Tobias Warneke (Jira)
Tobias Warneke created NETBEANS-3787:


 Summary: FlatLAF: activated tab bold line not correct with 
different project tab colors
 Key: NETBEANS-3787
 URL: https://issues.apache.org/jira/browse/NETBEANS-3787
 Project: NetBeans
  Issue Type: Bug
  Components: ide - UI
Affects Versions: 11.3
 Environment: Netbeans 11.3 beta2 with FlatLAF
Reporter: Tobias Warneke
 Attachments: image-2020-02-03-10-48-17-043.png, 
image-2020-02-03-10-49-22-748.png

I attached two screenshots. The LoginDeniedException - source file tab has a 
"correct" blue thick activated line but the GenericHandler has not.

It somehow shows the project color within the "activation line". 

Is this by design? I love the contrast of this line to the white background of 
an activated tab.



--
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] [Closed] (NETBEANS-2784) inline parameter hints - sometimes not displayed

2020-01-22 Thread Tobias Warneke (Jira)


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

Tobias Warneke closed NETBEANS-2784.

Resolution: Fixed

> inline parameter hints - sometimes not displayed
> 
>
> Key: NETBEANS-2784
> URL: https://issues.apache.org/jira/browse/NETBEANS-2784
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Tobias Warneke
>Priority: Major
>
> First of all, I love inline parameter hints. 
>  
> Maybe this is a bug, but not always the parameter hints are displayed, but I 
> cannot see any logic behind it:
>  * within a test class
>  ** assertEquals(configBackground.size(), actual: 3);
>  ** first parameter has no hint
>  * using apache queryrunner
>  ** new QueryRunner().query(con,
> sql: "select ...", new MapListHandler(), 7)
>  ** Only the SQL parameter has the hint
>  ** by the way sources were downloaded



--
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-3690) in maven multimodule project profile not propagated in submodule if choosen via project config

2020-01-13 Thread Tobias Warneke (Jira)


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

Tobias Warneke commented on NETBEANS-3690:
--

Now comes my aha moment. 

The problem is / was I had another submodule made the main project using the 
projects explorer of Netbeans. Even if the profile configuration is within the 
toolbars list, it does not get activated. 

All works fine, if I have no main project definied.

> in maven multimodule project profile not propagated in submodule if choosen 
> via project config
> --
>
> Key: NETBEANS-3690
> URL: https://issues.apache.org/jira/browse/NETBEANS-3690
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Reporter: Tobias Warneke
>Priority: Major
>
> I have a multimoduel project:
>  
> module A
>    - child module B
>  
> Within a profile defined in A I modified the configuration of my surefire 
> plugin, like:
> {{}}
> {{ skip-longrunning-tests}}
> {{ }}
> {{  }}
> {{ }}
> {{ org.apache.maven.plugins}}
> {{ maven-surefire-plugin}}
> {{ }}
> {{ }}
> {{ **/long*/*}}
> {{ **/LR_*}}
> {{ }}
> {{ LONGRUNNING }}
> {{}}
> {{ }}
> {{ }}
> {{ }}
> {{ }}
> Now Netbeans provides me a new "project configuration" within this toolbar 
> list called "skip-longrunning-tests". So far so good. 
> I was expecting that now that if I use this project configuration, that my 
> profile is attached to the maven call but it isn't.
> I expecting: *clean install -Plong-running-tests*
> but getting: *clean install*
>  
> If I run maven including manually this profile, it runs perfectly.



--
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-3690) in maven multimodule project profile not propagated in submodule if choosen via project config

2020-01-13 Thread Tobias Warneke (Jira)


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

Tobias Warneke commented on NETBEANS-3690:
--

If I activate the configuration using the options dialog / configurations, then 
it worked.

> in maven multimodule project profile not propagated in submodule if choosen 
> via project config
> --
>
> Key: NETBEANS-3690
> URL: https://issues.apache.org/jira/browse/NETBEANS-3690
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Reporter: Tobias Warneke
>Priority: Major
>
> I have a multimoduel project:
>  
> module A
>    - child module B
>  
> Within a profile defined in A I modified the configuration of my surefire 
> plugin, like:
> {{}}
> {{ skip-longrunning-tests}}
> {{ }}
> {{  }}
> {{ }}
> {{ org.apache.maven.plugins}}
> {{ maven-surefire-plugin}}
> {{ }}
> {{ }}
> {{ **/long*/*}}
> {{ **/LR_*}}
> {{ }}
> {{ LONGRUNNING }}
> {{}}
> {{ }}
> {{ }}
> {{ }}
> {{ }}
> Now Netbeans provides me a new "project configuration" within this toolbar 
> list called "skip-longrunning-tests". So far so good. 
> I was expecting that now that if I use this project configuration, that my 
> profile is attached to the maven call but it isn't.
> I expecting: *clean install -Plong-running-tests*
> but getting: *clean install*
>  
> If I run maven including manually this profile, it runs perfectly.



--
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-3690) in maven multimodule project profile not propagated in submodule if choosen via project config

2020-01-13 Thread Tobias Warneke (Jira)


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

Tobias Warneke commented on NETBEANS-3690:
--

This seems not only to be a problem with multi module projects. 

By the way even if I have my profile configuration int this toolbar list, it is 
not in the options / configurations list. This list is filled correctly after a 
new start of Netbeans.

> in maven multimodule project profile not propagated in submodule if choosen 
> via project config
> --
>
> Key: NETBEANS-3690
> URL: https://issues.apache.org/jira/browse/NETBEANS-3690
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Reporter: Tobias Warneke
>Priority: Major
>
> I have a multimoduel project:
>  
> module A
>    - child module B
>  
> Within a profile defined in A I modified the configuration of my surefire 
> plugin, like:
> {{}}
> {{ skip-longrunning-tests}}
> {{ }}
> {{  }}
> {{ }}
> {{ org.apache.maven.plugins}}
> {{ maven-surefire-plugin}}
> {{ }}
> {{ }}
> {{ **/long*/*}}
> {{ **/LR_*}}
> {{ }}
> {{ LONGRUNNING }}
> {{}}
> {{ }}
> {{ }}
> {{ }}
> {{ }}
> Now Netbeans provides me a new "project configuration" within this toolbar 
> list called "skip-longrunning-tests". So far so good. 
> I was expecting that now that if I use this project configuration, that my 
> profile is attached to the maven call but it isn't.
> I expecting: *clean install -Plong-running-tests*
> but getting: *clean install*
>  
> If I run maven including manually this profile, it runs perfectly.



--
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-3690) in maven multimodule project profile not propagated in submodule if choosen via project config

2020-01-13 Thread Tobias Warneke (Jira)
Tobias Warneke created NETBEANS-3690:


 Summary: in maven multimodule project profile not propagated in 
submodule if choosen via project config
 Key: NETBEANS-3690
 URL: https://issues.apache.org/jira/browse/NETBEANS-3690
 Project: NetBeans
  Issue Type: Bug
  Components: projects - Maven
Reporter: Tobias Warneke


I have a multimoduel project:

 

module A

   - child module B

 

Within a profile defined in A I modified the configuration of my surefire 
plugin, like:

{{}}
{{ skip-longrunning-tests}}
{{ }}
{{  }}
{{ }}
{{ org.apache.maven.plugins}}
{{ maven-surefire-plugin}}
{{ }}
{{ }}
{{ **/long*/*}}
{{ **/LR_*}}
{{ }}
{{ LONGRUNNING }}
{{}}
{{ }}
{{ }}
{{ }}
{{ }}

Now Netbeans provides me a new "project configuration" within this toolbar list 
called "skip-longrunning-tests". So far so good. 

I was expecting that now that if I use this project configuration, that my 
profile is attached to the maven call but it isn't.

I expecting: *clean install -Plong-running-tests*

but getting: *clean install*

 

If I run maven including manually this profile, it runs perfectly.



--
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-3554) problematic jaxb constellation (package-info.java)

2019-12-18 Thread Tobias Warneke (Jira)


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

Tobias Warneke commented on NETBEANS-3554:
--

At least I found a bug, that seems to fit to my problem.

> problematic jaxb constellation (package-info.java)
> --
>
> Key: NETBEANS-3554
> URL: https://issues.apache.org/jira/browse/NETBEANS-3554
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - JDK Problems
>Affects Versions: 10.0, 11.1
>Reporter: Tobias Warneke
>Priority: Major
>
> I don't know, if this is a bug. At least it is a problem, I cannot solve. 
> I implemented a JAXB serializable class (named "configuration") with XmlRoot 
> – annotation. Addionaly there is a package-info.java file, to config a 
> package wide schema. There are running at least 20 unit tests covering all 
> kinds of marshalling / unmarshalling things.
> So this is build using maven and it builds/compiles/runs fine using JDK 8 - 
> 13. As dependencies I use version 2.3.0 of jaxp-api, jaxb-impl, ... This is 
> not a Netbeans module.
> A minimal XML would look like:
> {{}}
> {{http://gingko.de/prjsetup/schema";>}}
> {{    }}
> {{}}
>  
> So here comes the problem. If I use this JAR within a Netbeans platform 
> application, all runs fine using JDK 8. But using a higher JDK version, it 
> seems as if the *package-info.java* is skipped and opening such an XML file 
> results in:
> {{javax.xml.bind.UnmarshalException: unexpected element 
> (URI:"http://gingko.de/prjsetup/schema";, lokal:"configuration"). Expected 
> elements are 
> <{}configuration>,<{}geoLayer>,<{}solution>,<{}solutionRevision>}}
> So somehow the information from the *package-info.java* file is not 
> considered. 
> By the way this JAR is used from a Netbeans module. The complete package is 
> public using a wrapper Netbeans module.
> In which direction should I investigate further? Is this a simple 
> configuration problem?



--
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-3554) problematic jaxb constellation (package-info.java)

2019-12-05 Thread Tobias Warneke (Jira)


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

Tobias Warneke commented on NETBEANS-3554:
--

I debugged the initialization of the JAXBContext. There in typeMap all known 
classes are listed. Using JDK 8 all classes have schemas attached. Using JDK 13 
within this Netbeans constellation have not.

> problematic jaxb constellation (package-info.java)
> --
>
> Key: NETBEANS-3554
> URL: https://issues.apache.org/jira/browse/NETBEANS-3554
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - JDK Problems
>Affects Versions: 10.0, 11.1
>Reporter: Tobias Warneke
>Priority: Major
>
> I don't know, if this is a bug. At least it is a problem, I cannot solve. 
> I implemented a JAXB serializable class (named "configuration") with XmlRoot 
> – annotation. Addionaly there is a package-info.java file, to config a 
> package wide schema. There are running at least 20 unit tests covering all 
> kinds of marshalling / unmarshalling things.
> So this is build using maven and it builds/compiles/runs fine using JDK 8 - 
> 13. As dependencies I use version 2.3.0 of jaxp-api, jaxb-impl, ... This is 
> not a Netbeans module.
> A minimal XML would look like:
> {{}}
> {{http://gingko.de/prjsetup/schema";>}}
> {{    }}
> {{}}
>  
> So here comes the problem. If I use this JAR within a Netbeans platform 
> application, all runs fine using JDK 8. But using a higher JDK version, it 
> seems as if the *package-info.java* is skipped and opening such an XML file 
> results in:
> {{javax.xml.bind.UnmarshalException: unexpected element 
> (URI:"http://gingko.de/prjsetup/schema";, lokal:"configuration"). Expected 
> elements are 
> <{}configuration>,<{}geoLayer>,<{}solution>,<{}solutionRevision>}}
> So somehow the information from the *package-info.java* file is not 
> considered. 
> By the way this JAR is used from a Netbeans module. The complete package is 
> public using a wrapper Netbeans module.
> In which direction should I investigate further? Is this a simple 
> configuration problem?



--
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-3554) problematic jaxb constellation (package-info.java)

2019-12-05 Thread Tobias Warneke (Jira)


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

Tobias Warneke updated NETBEANS-3554:
-
Issue Type: Bug  (was: Improvement)

> problematic jaxb constellation (package-info.java)
> --
>
> Key: NETBEANS-3554
> URL: https://issues.apache.org/jira/browse/NETBEANS-3554
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - JDK Problems
>Affects Versions: 10.0, 11.1
>Reporter: Tobias Warneke
>Priority: Major
>
> I don't know, if this is a bug. At least it is a problem, I cannot solve. 
> I implemented a JAXB serializable class (named "configuration") with XmlRoot 
> – annotation. Addionaly there is a package-info.java file, to config a 
> package wide schema. There are running at least 20 unit tests covering all 
> kinds of marshalling / unmarshalling things.
> So this is build using maven and it builds/compiles/runs fine using JDK 8 - 
> 13. As dependencies I use version 2.3.0 of jaxp-api, jaxb-impl, ... This is 
> not a Netbeans module.
> A minimal XML would look like:
> {{}}
> {{http://gingko.de/prjsetup/schema";>}}
> {{    }}
> {{}}
>  
> So here comes the problem. If I use this JAR within a Netbeans platform 
> application, all runs fine using JDK 8. But using a higher JDK version, it 
> seems as if the *package-info.java* is skipped and opening such an XML file 
> results in:
> {{javax.xml.bind.UnmarshalException: unexpected element 
> (URI:"http://gingko.de/prjsetup/schema";, lokal:"configuration"). Expected 
> elements are 
> <{}configuration>,<{}geoLayer>,<{}solution>,<{}solutionRevision>}}
> So somehow the information from the *package-info.java* file is not 
> considered. 
> By the way this JAR is used from a Netbeans module. The complete package is 
> public using a wrapper Netbeans module.
> In which direction should I investigate further? Is this a simple 
> configuration problem?



--
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-3554) problematic jaxb constellation (package-info.java)

2019-12-05 Thread Tobias Warneke (Jira)
Tobias Warneke created NETBEANS-3554:


 Summary: problematic jaxb constellation (package-info.java)
 Key: NETBEANS-3554
 URL: https://issues.apache.org/jira/browse/NETBEANS-3554
 Project: NetBeans
  Issue Type: Improvement
  Components: platform - JDK Problems
Affects Versions: 11.1, 10.0
Reporter: Tobias Warneke


I don't know, if this is a bug. At least it is a problem, I cannot solve. 

I implemented a JAXB serializable class (named "configuration") with XmlRoot – 
annotation. Addionaly there is a package-info.java file, to config a package 
wide schema. There are running at least 20 unit tests covering all kinds of 
marshalling / unmarshalling things.

So this is build using maven and it builds/compiles/runs fine using JDK 8 - 13. 
As dependencies I use version 2.3.0 of jaxp-api, jaxb-impl, ... This is not a 
Netbeans module.

A minimal XML would look like:

{{}}
{{http://gingko.de/prjsetup/schema";>}}
{{    }}
{{}}

 

So here comes the problem. If I use this JAR within a Netbeans platform 
application, all runs fine using JDK 8. But using a higher JDK version, it 
seems as if the *package-info.java* is skipped and opening such an XML file 
results in:

{{javax.xml.bind.UnmarshalException: unexpected element 
(URI:"http://gingko.de/prjsetup/schema";, lokal:"configuration"). Expected 
elements are <{}configuration>,<{}geoLayer>,<{}solution>,<{}solutionRevision>}}

So somehow the information from the *package-info.java* file is not considered. 

By the way this JAR is used from a Netbeans module. The complete package is 
public using a wrapper Netbeans module.

In which direction should I investigate further? Is this a simple configuration 
problem?



--
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-3539) change windows icon of netbeans platform executable within build process

2019-12-04 Thread Tobias Warneke (Jira)
Tobias Warneke created NETBEANS-3539:


 Summary: change windows icon of netbeans platform executable 
within build process
 Key: NETBEANS-3539
 URL: https://issues.apache.org/jira/browse/NETBEANS-3539
 Project: NetBeans
  Issue Type: Improvement
  Components: platform - Launchers&CLI
Affects Versions: 11.1, 10.0, 9.0, 8.2
Reporter: Tobias Warneke


I know this is an old or duplicate issue. However it is in my eyes problematic 
to use some external program, to integrate it into my maven build process to 
change the standard icon of my executable.

Is there now a better solution at hand? Maybe somehow the nbm plugin does 
handle this already? Or some kind of branding extension?



--
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] [Closed] (NETBEANS-3068) unable to create a new netbeans platform maven module

2019-09-06 Thread Tobias Warneke (Jira)


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

Tobias Warneke closed NETBEANS-3068.

Resolution: Fixed

> unable to create a new netbeans platform maven module 
> --
>
> Key: NETBEANS-3068
> URL: https://issues.apache.org/jira/browse/NETBEANS-3068
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Tobias Warneke
>Priority: Major
>
> right clicking on modules and trying to create a new 
> submodule I get this exception:
>  
> java.lang.UnsupportedOperationExceptionjava.lang.UnsupportedOperationException
>  at 
> java.base/java.util.Collections$UnmodifiableCollection.add(Collections.java:1060)
>  at 
> org.netbeans.modules.maven.apisupport.NBMNativeMWI$AdditionalOperations.performOperation(NBMNativeMWI.java:393)
>  at 
> org.netbeans.modules.maven.apisupport.NBMNativeMWI$AdditionalOperations.performOperation(NBMNativeMWI.java:141)
>  at 
> org.netbeans.modules.maven.model.Utilities.performPOMModelOperations(Utilities.java:318)
>  at 
> org.netbeans.modules.maven.spi.newproject.CreateProjectBuilder.create(CreateProjectBuilder.java:146)
>  at 
> org.netbeans.modules.maven.apisupport.NBMNativeMWI.instantiate(NBMNativeMWI.java:69)
>  at 
> org.netbeans.modules.maven.apisupport.NbmWizardIterator.instantiate(NbmWizardIterator.java:130)
>  at 
> org.openide.loaders.TemplateWizard$InstantiatingIteratorBridge.instantiate(TemplateWizard.java:1028)
>  at 
> org.openide.loaders.TemplateWizard.handleInstantiate(TemplateWizard.java:580) 
> at 
> org.netbeans.modules.project.ui.NewProjectWizard.handleInstantiate(NewProjectWizard.java:51)
>  at 
> org.openide.loaders.TemplateWizard.instantiateNewObjects(TemplateWizard.java:414)
>  at 
> org.openide.loaders.TemplateWizardIterImpl.instantiate(TemplateWizardIterImpl.java:223)
>  at 
> org.openide.loaders.TemplateWizardIteratorWrapper.instantiate(TemplateWizardIteratorWrapper.java:135)
>  at 
> org.openide.WizardDescriptor.callInstantiateOpen(WizardDescriptor.java:1605) 
> at org.openide.WizardDescriptor.callInstantiate(WizardDescriptor.java:1546) 
> at org.openide.WizardDescriptor.access$2300(WizardDescriptor.java:67)[catch] 
> at org.openide.WizardDescriptor$Listener$2$1.run(WizardDescriptor.java:2233) 
> 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)
>  
>  
>  
>  
> 
>  2019-09-06T10:08:31
>  1567757311208
>  3030
>  700
>  192
>  UI_USER_CONFIGURATION
>  UI_USER_CONFIGURATION
>  org.netbeans.modules.uihandler.Bundle
>  Windows 10, 10.0, amd64
>  OpenJDK 64-Bit Server VM, 11.0.4+11, OpenJDK Runtime Environment, 
> 11.0.4+11
>  Apache NetBeans IDE 11.1
>  
>  UnsupportedOperationException at 
> java.util.Collections$UnmodifiableCollection.add
>   reproduce>
>  *
> 



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3068) unable to create a new netbeans platform maven module

2019-09-06 Thread Tobias Warneke (Jira)


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

Tobias Warneke commented on NETBEANS-3068:
--

That was fast!!! :D(y)

I will try the daily build.

> unable to create a new netbeans platform maven module 
> --
>
> Key: NETBEANS-3068
> URL: https://issues.apache.org/jira/browse/NETBEANS-3068
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
>Reporter: Tobias Warneke
>Priority: Major
>
> right clicking on modules and trying to create a new 
> submodule I get this exception:
>  
> java.lang.UnsupportedOperationExceptionjava.lang.UnsupportedOperationException
>  at 
> java.base/java.util.Collections$UnmodifiableCollection.add(Collections.java:1060)
>  at 
> org.netbeans.modules.maven.apisupport.NBMNativeMWI$AdditionalOperations.performOperation(NBMNativeMWI.java:393)
>  at 
> org.netbeans.modules.maven.apisupport.NBMNativeMWI$AdditionalOperations.performOperation(NBMNativeMWI.java:141)
>  at 
> org.netbeans.modules.maven.model.Utilities.performPOMModelOperations(Utilities.java:318)
>  at 
> org.netbeans.modules.maven.spi.newproject.CreateProjectBuilder.create(CreateProjectBuilder.java:146)
>  at 
> org.netbeans.modules.maven.apisupport.NBMNativeMWI.instantiate(NBMNativeMWI.java:69)
>  at 
> org.netbeans.modules.maven.apisupport.NbmWizardIterator.instantiate(NbmWizardIterator.java:130)
>  at 
> org.openide.loaders.TemplateWizard$InstantiatingIteratorBridge.instantiate(TemplateWizard.java:1028)
>  at 
> org.openide.loaders.TemplateWizard.handleInstantiate(TemplateWizard.java:580) 
> at 
> org.netbeans.modules.project.ui.NewProjectWizard.handleInstantiate(NewProjectWizard.java:51)
>  at 
> org.openide.loaders.TemplateWizard.instantiateNewObjects(TemplateWizard.java:414)
>  at 
> org.openide.loaders.TemplateWizardIterImpl.instantiate(TemplateWizardIterImpl.java:223)
>  at 
> org.openide.loaders.TemplateWizardIteratorWrapper.instantiate(TemplateWizardIteratorWrapper.java:135)
>  at 
> org.openide.WizardDescriptor.callInstantiateOpen(WizardDescriptor.java:1605) 
> at org.openide.WizardDescriptor.callInstantiate(WizardDescriptor.java:1546) 
> at org.openide.WizardDescriptor.access$2300(WizardDescriptor.java:67)[catch] 
> at org.openide.WizardDescriptor$Listener$2$1.run(WizardDescriptor.java:2233) 
> 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)
>  
>  
>  
>  
> 
>  2019-09-06T10:08:31
>  1567757311208
>  3030
>  700
>  192
>  UI_USER_CONFIGURATION
>  UI_USER_CONFIGURATION
>  org.netbeans.modules.uihandler.Bundle
>  Windows 10, 10.0, amd64
>  OpenJDK 64-Bit Server VM, 11.0.4+11, OpenJDK Runtime Environment, 
> 11.0.4+11
>  Apache NetBeans IDE 11.1
>  
>  UnsupportedOperationException at 
> java.util.Collections$UnmodifiableCollection.add
>   reproduce>
>  *
> 



--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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-3068) unable to create a new netbeans platform maven module

2019-09-06 Thread Tobias Warneke (Jira)
Tobias Warneke created NETBEANS-3068:


 Summary: unable to create a new netbeans platform maven module 
 Key: NETBEANS-3068
 URL: https://issues.apache.org/jira/browse/NETBEANS-3068
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 11.1
Reporter: Tobias Warneke


right clicking on modules and trying to create a new 

submodule I get this exception:

 

java.lang.UnsupportedOperationExceptionjava.lang.UnsupportedOperationException 
at 
java.base/java.util.Collections$UnmodifiableCollection.add(Collections.java:1060)
 at 
org.netbeans.modules.maven.apisupport.NBMNativeMWI$AdditionalOperations.performOperation(NBMNativeMWI.java:393)
 at 
org.netbeans.modules.maven.apisupport.NBMNativeMWI$AdditionalOperations.performOperation(NBMNativeMWI.java:141)
 at 
org.netbeans.modules.maven.model.Utilities.performPOMModelOperations(Utilities.java:318)
 at 
org.netbeans.modules.maven.spi.newproject.CreateProjectBuilder.create(CreateProjectBuilder.java:146)
 at 
org.netbeans.modules.maven.apisupport.NBMNativeMWI.instantiate(NBMNativeMWI.java:69)
 at 
org.netbeans.modules.maven.apisupport.NbmWizardIterator.instantiate(NbmWizardIterator.java:130)
 at 
org.openide.loaders.TemplateWizard$InstantiatingIteratorBridge.instantiate(TemplateWizard.java:1028)
 at 
org.openide.loaders.TemplateWizard.handleInstantiate(TemplateWizard.java:580) 
at 
org.netbeans.modules.project.ui.NewProjectWizard.handleInstantiate(NewProjectWizard.java:51)
 at 
org.openide.loaders.TemplateWizard.instantiateNewObjects(TemplateWizard.java:414)
 at 
org.openide.loaders.TemplateWizardIterImpl.instantiate(TemplateWizardIterImpl.java:223)
 at 
org.openide.loaders.TemplateWizardIteratorWrapper.instantiate(TemplateWizardIteratorWrapper.java:135)
 at 
org.openide.WizardDescriptor.callInstantiateOpen(WizardDescriptor.java:1605) at 
org.openide.WizardDescriptor.callInstantiate(WizardDescriptor.java:1546) at 
org.openide.WizardDescriptor.access$2300(WizardDescriptor.java:67)[catch] at 
org.openide.WizardDescriptor$Listener$2$1.run(WizardDescriptor.java:2233) 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)

 

 

 

 


 2019-09-06T10:08:31
 1567757311208
 3030
 700
 192
 UI_USER_CONFIGURATION
 UI_USER_CONFIGURATION
 org.netbeans.modules.uihandler.Bundle
 Windows 10, 10.0, amd64
 OpenJDK 64-Bit Server VM, 11.0.4+11, OpenJDK Runtime Environment, 
11.0.4+11
 Apache NetBeans IDE 11.1
 
 UnsupportedOperationException at 
java.util.Collections$UnmodifiableCollection.add
 
 *




--
This message was sent by Atlassian Jira
(v8.3.2#803003)

-
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] [Closed] (NETBEANS-2822) unable to open maven project settings dialog using netbeans 11.1 vc1

2019-07-12 Thread Tobias Warneke (JIRA)


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

Tobias Warneke closed NETBEANS-2822.

Resolution: Fixed

> unable to open maven project settings dialog using netbeans 11.1 vc1
> 
>
> Key: NETBEANS-2822
> URL: https://issues.apache.org/jira/browse/NETBEANS-2822
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
> Environment: Netbeans 11.1 Vc1 
> some java maven project
>Reporter: Tobias Warneke
>Priority: Major
>
> Using beta3 it works.
> If I try to open the dialog I get a payara module exception. 
> The same happens if I have a configured payara server within netbeans.
> This happens after using Netbeans 11.1 Vc1 for the first time. Just taking 
> over some configurations from Netbeans 11.0.
>  
>  
> {{java.lang.NullPointerException}}
> {{ at 
> org.netbeans.modules.fish.payara.micro.project.MicroApplication.getInstance(MicroApplication.java:149)}}
> {{ at 
> org.netbeans.modules.fish.payara.micro.project.MicroPropertiesPanelProvider.createCategory(MicroPropertiesPanelProvider.java:44)}}
> {{ at 
> org.netbeans.spi.project.ui.support.ProjectCustomizer$DelegateCategoryProvider.readCategories(ProjectCustomizer.java:647)}}
> {{ at 
> org.netbeans.spi.project.ui.support.ProjectCustomizer$DelegateCategoryProvider.getSubCategories(ProjectCustomizer.java:608)}}
> {{ at 
> org.netbeans.spi.project.ui.support.ProjectCustomizer.createCustomizerDialog(ProjectCustomizer.java:235)}}
> {{ at 
> org.netbeans.modules.maven.customizer.CustomizerProviderImpl$1.run(CustomizerProviderImpl.java:155)}}
> {{ at 
> org.netbeans.modules.openide.util.NbMutexEventProvider$Event.doEvent(NbMutexEventProvider.java:95)}}
> {{ at 
> org.netbeans.modules.openide.util.NbMutexEventProvider$Event.readAccess(NbMutexEventProvider.java:70)}}
> {{ at 
> org.netbeans.modules.openide.util.LazyMutexImplementation.readAccess(LazyMutexImplementation.java:66)}}
> {{ at org.openide.util.Mutex.readAccess(Mutex.java:235)}}
> {{ at 
> org.netbeans.modules.maven.customizer.CustomizerProviderImpl.showCustomizer(CustomizerProviderImpl.java:147)}}
> {{ at 
> org.netbeans.modules.maven.customizer.CustomizerProviderImpl.showCustomizer(CustomizerProviderImpl.java:115)}}
> {{ at 
> org.netbeans.modules.maven.customizer.CustomizerProviderImpl.showCustomizer(CustomizerProviderImpl.java:110)}}
> {{ at 
> org.netbeans.modules.project.ui.actions.CustomizeProject$1$1.run(CustomizeProject.java:135)}}
> {{ 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)}}
> {{[catch] 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)}}



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2822) unable to open maven project settings dialog using netbeans 11.1 vc1

2019-07-12 Thread Tobias Warneke (JIRA)


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

Tobias Warneke commented on NETBEANS-2822:
--

I saw this and made a link to this problem. So should I close this one?

> unable to open maven project settings dialog using netbeans 11.1 vc1
> 
>
> Key: NETBEANS-2822
> URL: https://issues.apache.org/jira/browse/NETBEANS-2822
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 11.1
> Environment: Netbeans 11.1 Vc1 
> some java maven project
>Reporter: Tobias Warneke
>Priority: Major
>
> Using beta3 it works.
> If I try to open the dialog I get a payara module exception. 
> The same happens if I have a configured payara server within netbeans.
> This happens after using Netbeans 11.1 Vc1 for the first time. Just taking 
> over some configurations from Netbeans 11.0.
>  
>  
> {{java.lang.NullPointerException}}
> {{ at 
> org.netbeans.modules.fish.payara.micro.project.MicroApplication.getInstance(MicroApplication.java:149)}}
> {{ at 
> org.netbeans.modules.fish.payara.micro.project.MicroPropertiesPanelProvider.createCategory(MicroPropertiesPanelProvider.java:44)}}
> {{ at 
> org.netbeans.spi.project.ui.support.ProjectCustomizer$DelegateCategoryProvider.readCategories(ProjectCustomizer.java:647)}}
> {{ at 
> org.netbeans.spi.project.ui.support.ProjectCustomizer$DelegateCategoryProvider.getSubCategories(ProjectCustomizer.java:608)}}
> {{ at 
> org.netbeans.spi.project.ui.support.ProjectCustomizer.createCustomizerDialog(ProjectCustomizer.java:235)}}
> {{ at 
> org.netbeans.modules.maven.customizer.CustomizerProviderImpl$1.run(CustomizerProviderImpl.java:155)}}
> {{ at 
> org.netbeans.modules.openide.util.NbMutexEventProvider$Event.doEvent(NbMutexEventProvider.java:95)}}
> {{ at 
> org.netbeans.modules.openide.util.NbMutexEventProvider$Event.readAccess(NbMutexEventProvider.java:70)}}
> {{ at 
> org.netbeans.modules.openide.util.LazyMutexImplementation.readAccess(LazyMutexImplementation.java:66)}}
> {{ at org.openide.util.Mutex.readAccess(Mutex.java:235)}}
> {{ at 
> org.netbeans.modules.maven.customizer.CustomizerProviderImpl.showCustomizer(CustomizerProviderImpl.java:147)}}
> {{ at 
> org.netbeans.modules.maven.customizer.CustomizerProviderImpl.showCustomizer(CustomizerProviderImpl.java:115)}}
> {{ at 
> org.netbeans.modules.maven.customizer.CustomizerProviderImpl.showCustomizer(CustomizerProviderImpl.java:110)}}
> {{ at 
> org.netbeans.modules.project.ui.actions.CustomizeProject$1$1.run(CustomizeProject.java:135)}}
> {{ 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)}}
> {{[catch] 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)}}



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2822) unable to open maven project settings dialog using netbeans 11.1 vc1

2019-07-11 Thread Tobias Warneke (JIRA)
Tobias Warneke created NETBEANS-2822:


 Summary: unable to open maven project settings dialog using 
netbeans 11.1 vc1
 Key: NETBEANS-2822
 URL: https://issues.apache.org/jira/browse/NETBEANS-2822
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 11.1
 Environment: Netbeans 11.1 Vc1 
some java maven project
Reporter: Tobias Warneke


Using beta3 it works.

If I try to open the dialog I get a payara module exception. 

The same happens if I have a configured payara server within netbeans.

This happens after using Netbeans 11.1 Vc1 for the first time. Just taking over 
some configurations from Netbeans 11.0.

 

 

{{java.lang.NullPointerException}}
{{ at 
org.netbeans.modules.fish.payara.micro.project.MicroApplication.getInstance(MicroApplication.java:149)}}
{{ at 
org.netbeans.modules.fish.payara.micro.project.MicroPropertiesPanelProvider.createCategory(MicroPropertiesPanelProvider.java:44)}}
{{ at 
org.netbeans.spi.project.ui.support.ProjectCustomizer$DelegateCategoryProvider.readCategories(ProjectCustomizer.java:647)}}
{{ at 
org.netbeans.spi.project.ui.support.ProjectCustomizer$DelegateCategoryProvider.getSubCategories(ProjectCustomizer.java:608)}}
{{ at 
org.netbeans.spi.project.ui.support.ProjectCustomizer.createCustomizerDialog(ProjectCustomizer.java:235)}}
{{ at 
org.netbeans.modules.maven.customizer.CustomizerProviderImpl$1.run(CustomizerProviderImpl.java:155)}}
{{ at 
org.netbeans.modules.openide.util.NbMutexEventProvider$Event.doEvent(NbMutexEventProvider.java:95)}}
{{ at 
org.netbeans.modules.openide.util.NbMutexEventProvider$Event.readAccess(NbMutexEventProvider.java:70)}}
{{ at 
org.netbeans.modules.openide.util.LazyMutexImplementation.readAccess(LazyMutexImplementation.java:66)}}
{{ at org.openide.util.Mutex.readAccess(Mutex.java:235)}}
{{ at 
org.netbeans.modules.maven.customizer.CustomizerProviderImpl.showCustomizer(CustomizerProviderImpl.java:147)}}
{{ at 
org.netbeans.modules.maven.customizer.CustomizerProviderImpl.showCustomizer(CustomizerProviderImpl.java:115)}}
{{ at 
org.netbeans.modules.maven.customizer.CustomizerProviderImpl.showCustomizer(CustomizerProviderImpl.java:110)}}
{{ at 
org.netbeans.modules.project.ui.actions.CustomizeProject$1$1.run(CustomizeProject.java:135)}}
{{ 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)}}
{{[catch] 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)}}



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

-
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-2784) inline parameter hints - sometimes not displayed

2019-07-02 Thread Tobias Warneke (JIRA)
Tobias Warneke created NETBEANS-2784:


 Summary: inline parameter hints - sometimes not displayed
 Key: NETBEANS-2784
 URL: https://issues.apache.org/jira/browse/NETBEANS-2784
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 11.1
Reporter: Tobias Warneke


First of all, I love inline parameter hints. 

 

Maybe this is a bug, but not always the parameter hints are displayed, but I 
cannot see any logic behind it:
 * within a test class
 ** assertEquals(configBackground.size(), actual: 3);
 ** first parameter has no hint
 * using apache queryrunner
 ** new QueryRunner().query(con,
sql: "select ...", new MapListHandler(), 7)
 ** Only the SQL parameter has the hint
 ** by the way sources were downloaded



--
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-2748) visualization of java module in maven project

2019-06-25 Thread Tobias Warneke (JIRA)
Tobias Warneke created NETBEANS-2748:


 Summary: visualization of java module in maven project
 Key: NETBEANS-2748
 URL: https://issues.apache.org/jira/browse/NETBEANS-2748
 Project: NetBeans
  Issue Type: Bug
  Components: projects - Maven
Affects Versions: 11.0
Reporter: Tobias Warneke


This is all about modules of the java module system and using Java 11 to 
compile.

 

Using an ANT - project style the packages of a java module are tapped with a 
little lock icon in the project view. This is not the case if I have a module 
within a maven project. 

It would be nice if I could expose packages via right click + popup command at 
them like I can if I using Netbeans module system.

It would be a huge benefit if I could differ between exposed, locked 
packages/classes. 

 

However, as a side task, it would be cool if the Class icon in the project view 
could reflect the visibility of this class (public, protected ..)



--
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-2477) test global Lookup with junit jupiter using MockServices

2019-04-29 Thread Tobias Warneke (JIRA)


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

Tobias Warneke updated NETBEANS-2477:
-
Description: 
To test a global registered service I am using 

*MockServices.setServices* 

_(import org.netbeans.junit.MockServices;)_ 

_(org.netbeans.api_
 _org-netbeans-modules-nbjunit)_

within my tests. This works fine using *junit 4.x* but fails using *junit 
jupiter* with this exception:

_java.lang.NoClassDefFoundError: junit/framework/AssertionFailedError_

 

Is there a version of MockServices that works with *junit jupiter*? Or is there 
another junit free way of mocking a service?

 

  was:
To test a global registered service I am using 

MockServices.setServices 

within my tests. This works fine using *junit 4.x* but fails using *junit 
jupiter* with this exception:

_java.lang.NoClassDefFoundError: junit/framework/AssertionFailedError_

 

Is there a version of MockServices that works with *junit jupiter*? Or is there 
another junit free way of mocking a service?

 


> test global Lookup with junit jupiter using MockServices
> 
>
> Key: NETBEANS-2477
> URL: https://issues.apache.org/jira/browse/NETBEANS-2477
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 8.2
>Reporter: Tobias Warneke
>Priority: Major
>
> To test a global registered service I am using 
> *MockServices.setServices* 
> _(import org.netbeans.junit.MockServices;)_ 
> _(org.netbeans.api_
>  _org-netbeans-modules-nbjunit)_
> within my tests. This works fine using *junit 4.x* but fails using *junit 
> jupiter* with this exception:
> _java.lang.NoClassDefFoundError: junit/framework/AssertionFailedError_
>  
> Is there a version of MockServices that works with *junit jupiter*? Or is 
> there another junit free way of mocking a service?
>  



--
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-2477) test global Lookup with junit jupiter using MockServices

2019-04-29 Thread Tobias Warneke (JIRA)


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

Tobias Warneke updated NETBEANS-2477:
-
Description: 
To test a global registered service I am using 

MockServices.setServices 

within my tests. This works fine using *junit 4.x* but fails using *junit 
jupiter* with this exception:

_java.lang.NoClassDefFoundError: junit/framework/AssertionFailedError_

 

Is there a version of MockServices that works with *junit jupiter*? Or is there 
another junit free way of mocking a service?

 

  was:
To test a global registered service I am using 

MockServices.setServices 

within my tests. This works fine using *junit 4.x* but fails using *junit 
jupiter* with this exception:

_java.lang.NoClassDefFoundError: junit/framework/AssertionFailedError_

 

Is there a version of MockServices that works with *junit jupiter*? Or is there 
another way of mocking a service?

 


> test global Lookup with junit jupiter using MockServices
> 
>
> Key: NETBEANS-2477
> URL: https://issues.apache.org/jira/browse/NETBEANS-2477
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 8.2
>Reporter: Tobias Warneke
>Priority: Major
>
> To test a global registered service I am using 
> MockServices.setServices 
> within my tests. This works fine using *junit 4.x* but fails using *junit 
> jupiter* with this exception:
> _java.lang.NoClassDefFoundError: junit/framework/AssertionFailedError_
>  
> Is there a version of MockServices that works with *junit jupiter*? Or is 
> there another junit free way of mocking a service?
>  



--
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-2477) test global Lookup with junit jupiter using MockServices

2019-04-29 Thread Tobias Warneke (JIRA)


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

Tobias Warneke updated NETBEANS-2477:
-
Description: 
To test a global registered service I am using 

MockServices.setServices 

within my tests. This works fine using *junit 4.x* but fails using *junit 
jupiter* with this exception:

_java.lang.NoClassDefFoundError: junit/framework/AssertionFailedError_

 

Is there a version of MockServices that works with *junit jupiter*? Or is there 
another way of mocking a service?

 

  was:
To test a global registered service I am using 

MockServices.setServices 

within my tests. This works fine using *junit 4.x* but fails using *junit 
jupiter* with this exception:

_java.lang.NoClassDefFoundError: junit/framework/AssertionFailedError_

 

Is there a version of MockServices that works with *junit jupiter*? Or 

 


> test global Lookup with junit jupiter using MockServices
> 
>
> Key: NETBEANS-2477
> URL: https://issues.apache.org/jira/browse/NETBEANS-2477
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 8.2
>Reporter: Tobias Warneke
>Priority: Major
>
> To test a global registered service I am using 
> MockServices.setServices 
> within my tests. This works fine using *junit 4.x* but fails using *junit 
> jupiter* with this exception:
> _java.lang.NoClassDefFoundError: junit/framework/AssertionFailedError_
>  
> Is there a version of MockServices that works with *junit jupiter*? Or is 
> there another way of mocking a service?
>  



--
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-2477) test global Lookup with junit jupiter using MockServices

2019-04-29 Thread Tobias Warneke (JIRA)


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

Tobias Warneke updated NETBEANS-2477:
-
Description: 
To test a global registered service I am using 

MockServices.setServices 

within my tests. This works fine using *junit 4.x* but fails using *junit 
jupiter* with this exception:

_java.lang.NoClassDefFoundError: junit/framework/AssertionFailedError_

 

Is there a version of MockServices that works with *junit jupiter*? Or 

 

  was:
To test a global registered service I am using 

MockServices.setServices 

within my tests. This works fine using *junit 4.x* but fails using *junit 
jupiter* with this exception:

_java.lang.NoClassDefFoundError: junit/framework/AssertionFailedError_

 

Is there a version of MockServices that works with *junit jupiter*?

 


> test global Lookup with junit jupiter using MockServices
> 
>
> Key: NETBEANS-2477
> URL: https://issues.apache.org/jira/browse/NETBEANS-2477
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 8.2
>Reporter: Tobias Warneke
>Priority: Major
>
> To test a global registered service I am using 
> MockServices.setServices 
> within my tests. This works fine using *junit 4.x* but fails using *junit 
> jupiter* with this exception:
> _java.lang.NoClassDefFoundError: junit/framework/AssertionFailedError_
>  
> Is there a version of MockServices that works with *junit jupiter*? Or 
>  



--
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-2477) test global Lookup with junit jupiter using MockServices

2019-04-29 Thread Tobias Warneke (JIRA)
Tobias Warneke created NETBEANS-2477:


 Summary: test global Lookup with junit jupiter using MockServices
 Key: NETBEANS-2477
 URL: https://issues.apache.org/jira/browse/NETBEANS-2477
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 8.2
Reporter: Tobias Warneke


To test a global registered service I am using 

MockServices.setServices 

within my tests. This works fine using *junit 4.x* but fails using *junit 
jupiter* with this exception:

_java.lang.NoClassDefFoundError: junit/framework/AssertionFailedError_

 

Is there a version of MockServices that works with *junit jupiter*?

 



--
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] [Closed] (NETBEANS-2384) multi module maven build stops with exception

2019-04-29 Thread Tobias Warneke (JIRA)


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

Tobias Warneke closed NETBEANS-2384.

Resolution: Won't Fix

> 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
> Attachments: ide.log.txt, mavenproject4.zip, screenshot-1.png, 
> screenshot-2.png, screenshot-3.png
>
>
> 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-2384) multi module maven build stops with exception

2019-04-29 Thread Tobias Warneke (JIRA)


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

Tobias Warneke commented on NETBEANS-2384:
--

OK. Then it was indeed a problem of corrupted data local on my machine.

So we could close this issue.

Thx for helping.

> 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
> Attachments: ide.log.txt, mavenproject4.zip, screenshot-1.png, 
> screenshot-2.png, screenshot-3.png
>
>
> 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] [Comment Edited] (NETBEANS-2384) multi module maven build stops with exception

2019-04-29 Thread Tobias Warneke (JIRA)


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

Tobias Warneke edited comment on NETBEANS-2384 at 4/29/19 7:05 AM:
---

With a last attempt I found a solution for me. I only needed to remove the 
complete *nbproject* directory. Here seems to be the project type be set. Now 
Netbeans recognizes this project as a normal maven project. That is all I 
wanted.

This folder was not included within my SCM. I assume my colleague could have 
built our project without any problems. It was, therefore, a local problem of 
mine. 

However, IMHO Netbeans should not react in this Exception throwing and Output 
stopping way.


was (Author: wumpz):
With a last attemt I found a solution for me. I only needed to remove the 
complete nbproject directory. Here seems to be the project type be set. Now 
Netbeans recognizes this project as a normal maven project. That is all I 
wanted.

This folder was not included within my SCM. I assume my collegue could have 
built our project without any problems. It was therefore a local problem of 
mine. 

However, IMHO Netbeans should not react in this Exception throwing and Output 
stopping way.

> 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
> Attachments: ide.log.txt, mavenproject4.zip, screenshot-1.png, 
> screenshot-2.png, screenshot-3.png
>
>
> 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] [Comment Edited] (NETBEANS-2384) multi module maven build stops with exception

2019-04-29 Thread Tobias Warneke (JIRA)


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

Tobias Warneke edited comment on NETBEANS-2384 at 4/29/19 7:04 AM:
---

With a last attemt I found a solution for me. I only needed to remove the 
complete nbproject directory. Here seems to be the project type be set. Now 
Netbeans recognizes this project as a normal maven project. That is all I 
wanted.

This folder was not included within my SCM. I assume my collegue could have 
built our project without any problems. It was therefore a local problem of 
mine. 

However, IMHO Netbeans should not react in this Exception throwing and Output 
stopping way.


was (Author: wumpz):
With a last attemt I found a solution for me. I only needed to remove the 
complete nbproject directory. Here seems to be the project type be set. Now 
Netbeans recognizes this project as a normal maven project. That is all I 
wanted. 

However, IMHO Netbeans should not react in this Exception throwing and Output 
stopping way.

> 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
> Attachments: ide.log.txt, mavenproject4.zip, screenshot-1.png, 
> screenshot-2.png, screenshot-3.png
>
>
> 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-2384) multi module maven build stops with exception

2019-04-29 Thread Tobias Warneke (JIRA)


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

Tobias Warneke commented on NETBEANS-2384:
--

With a last attemt I found a solution for me. I only needed to remove the 
complete nbproject directory. Here seems to be the project type be set. Now 
Netbeans recognizes this project as a normal maven project. That is all I 
wanted. 

However, IMHO Netbeans should not react in this Exception throwing and Output 
stopping way.

> 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
> Attachments: ide.log.txt, mavenproject4.zip, screenshot-1.png, 
> screenshot-2.png, screenshot-3.png
>
>
> 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-2384) multi module maven build stops with exception

2019-04-28 Thread Tobias Warneke (JIRA)


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

Tobias Warneke commented on NETBEANS-2384:
--

Sorry. At the moment I don't find enough time to proceed here. I will stay with 
Netbeans 10 until this is somehow solved.

> 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
> Attachments: ide.log.txt, mavenproject4.zip, screenshot-1.png, 
> screenshot-2.png, screenshot-3.png
>
>
> 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] [Comment Edited] (NETBEANS-2384) multi module maven build stops with exception

2019-04-28 Thread Tobias Warneke (JIRA)


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

Tobias Warneke edited comment on NETBEANS-2384 at 4/29/19 6:45 AM:
---

Sorry. At the moment I don't find enough time to proceed here. I will stay with 
Netbeans 10 until this is somehow solved. As you mentioned I created all needed 
Maven directories but Netbeans always recognizes it as a HTML 5 project. This 
seems to be higher prioritized.


was (Author: wumpz):
Sorry. At the moment I don't find enough time to proceed here. I will stay with 
Netbeans 10 until this is somehow solved.

> 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
> Attachments: ide.log.txt, mavenproject4.zip, screenshot-1.png, 
> screenshot-2.png, screenshot-3.png
>
>
> 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-2384) multi module maven build stops with exception

2019-04-18 Thread Tobias Warneke (JIRA)


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

Tobias Warneke commented on NETBEANS-2384:
--

My wish is, that Netbeans should not be so fragile regarding those project 
structures. My thinking is, that you cannot guess all possible project 
structures. Therefore Netbeans should be as stable as possible regarding this.

May I help? Would it be enough the sourcecode line above to modify to check for 
prj not to be null? Or are there any side effects in place?

> 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
> Attachments: ide.log.txt, mavenproject4.zip, screenshot-1.png, 
> screenshot-2.png, screenshot-3.png
>
>
> 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] [Comment Edited] (NETBEANS-2384) multi module maven build stops with exception

2019-04-17 Thread Tobias Warneke (JIRA)


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

Tobias Warneke edited comment on NETBEANS-2384 at 4/18/19 5:57 AM:
---

The problem is, that the LOG Output is stopping immediately when this exception 
occurs. Maybe the build is running in the background, but there is no feedback 
anymore.

Sorry if I was unclear about that. The (my) problem is exactly that. 

Does your LOG Output give you a build successful at the end?

 

Why does it look so strange to you to have this project layout? Imagine a rest 
- server component and an Angular client. Why not build it together?


was (Author: wumpz):
The problem is, that the LOG Output is stopping immediately when this exception 
occurs. Maybe the build is running in the background, but there is no feedback 
anymore.

Why does it look so strange to you to have this project layout? Imagine a rest 
- server component and an Angular client. Why not build it together?

> 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
> Attachments: ide.log.txt, mavenproject4.zip, screenshot-1.png, 
> screenshot-2.png, screenshot-3.png
>
>
> 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] [Comment Edited] (NETBEANS-2384) multi module maven build stops with exception

2019-04-17 Thread Tobias Warneke (JIRA)


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

Tobias Warneke edited comment on NETBEANS-2384 at 4/18/19 5:35 AM:
---

The problem is, that the LOG Output is stopping immediately when this exception 
occurs. Maybe the build is running in the background, but there is no feedback 
anymore.

Why does it look so strange to you to have this project layout? Imagine a rest 
- server component and an Angular client. Why not build it together?


was (Author: wumpz):
The problem is, that the LOG Output is stopping immediately when this exception 
occurs. Maybe the build is running in the background, but there is no feedback 
anymore.

> 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
> Attachments: ide.log.txt, mavenproject4.zip, screenshot-1.png, 
> screenshot-2.png, screenshot-3.png
>
>
> 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-2384) multi module maven build stops with exception

2019-04-17 Thread Tobias Warneke (JIRA)


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

Tobias Warneke commented on NETBEANS-2384:
--

The problem is, that the LOG Output is stopping immediately when this exception 
occurs. Maybe the build is running in the background, but there is no feedback 
anymore.

> 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
> Attachments: ide.log.txt, mavenproject4.zip, screenshot-1.png, 
> screenshot-2.png, screenshot-3.png
>
>
> 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-2384) multi module maven build stops with exception

2019-04-17 Thread Tobias Warneke (JIRA)


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

Tobias Warneke commented on NETBEANS-2384:
--

Do you need any futher investigation or data?

> 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
> Attachments: ide.log.txt, mavenproject4.zip, screenshot-1.png, 
> screenshot-2.png, screenshot-3.png
>
>
> 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] [Comment Edited] (NETBEANS-2384) multi module maven build stops with exception

2019-04-17 Thread Tobias Warneke (JIRA)


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

Tobias Warneke edited comment on NETBEANS-2384 at 4/17/19 8:06 AM:
---

Do you need any further investigation or data?


was (Author: wumpz):
Do you need any futher investigation or data?

> 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
> Attachments: ide.log.txt, mavenproject4.zip, screenshot-1.png, 
> screenshot-2.png, screenshot-3.png
>
>
> 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-2384) multi module maven build stops with exception

2019-04-16 Thread Tobias Warneke (JIRA)


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

Tobias Warneke commented on NETBEANS-2384:
--

Another strange thing is, that the parent maven project does not show this 
child submodule, within the module list.

> 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
> Attachments: ide.log.txt, mavenproject4.zip, screenshot-1.png, 
> screenshot-2.png, screenshot-3.png
>
>
> 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] [Comment Edited] (NETBEANS-2384) multi module maven build stops with exception

2019-04-16 Thread Tobias Warneke (JIRA)


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

Tobias Warneke edited comment on NETBEANS-2384 at 4/16/19 1:24 PM:
---

Hi,

 

I attached screenshots of my plugin manager.

Using Netbeans, you could build it without any problems?

Strange.

I am as well on windows 10. Tried with Oracle JDK 1.8, OpenJDK 11.0.1 clean 
build from popupmenu netbeans --> exception.

>From the command line, I am able to build the project.

 

Regards


was (Author: wumpz):
Hi,

 

I attached screenshots of my plugin manager.

Using Netbeans, you could build it without any problems?

Strange.

I am as well on windows 10. Tries with Oracle JDK 1.8, OpenJDK 11.0.1 clean 
build from popupmenu netbeans --> exception.

>From the command line, I am able to build the project.

 

Regards

> 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
> Attachments: ide.log.txt, mavenproject4.zip, screenshot-1.png, 
> screenshot-2.png, screenshot-3.png
>
>
> 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] [Updated] (NETBEANS-2384) multi module maven build stops with exception

2019-04-16 Thread Tobias Warneke (JIRA)


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

Tobias Warneke updated NETBEANS-2384:
-
Attachment: ide.log.txt

> 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
> Attachments: ide.log.txt, mavenproject4.zip, screenshot-1.png, 
> screenshot-2.png, screenshot-3.png
>
>
> 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-2384) multi module maven build stops with exception

2019-04-16 Thread Tobias Warneke (JIRA)


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

Tobias Warneke commented on NETBEANS-2384:
--

I added the complete ide.log as well. 

> 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
> Attachments: ide.log.txt, mavenproject4.zip, screenshot-1.png, 
> screenshot-2.png, screenshot-3.png
>
>
> 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-2384) multi module maven build stops with exception

2019-04-16 Thread Tobias Warneke (JIRA)


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

Tobias Warneke commented on NETBEANS-2384:
--

Running Netbeans with Oracle JDK 1.8 has the same effect.

> 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
> Attachments: mavenproject4.zip, screenshot-1.png, screenshot-2.png, 
> screenshot-3.png
>
>
> 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-2384) multi module maven build stops with exception

2019-04-16 Thread Tobias Warneke (JIRA)


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

Tobias Warneke commented on NETBEANS-2384:
--

By the way Netbeans is running Java 11.0.1 OpenJDK 64 Bit

> 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
> Attachments: mavenproject4.zip, screenshot-1.png, screenshot-2.png, 
> screenshot-3.png
>
>
> 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-2384) multi module maven build stops with exception

2019-04-16 Thread Tobias Warneke (JIRA)


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

Tobias Warneke commented on NETBEANS-2384:
--

As well I tried maven 3.0, 3.5, 3.6

> 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
> Attachments: mavenproject4.zip, screenshot-1.png, screenshot-2.png, 
> screenshot-3.png
>
>
> 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-2384) multi module maven build stops with exception

2019-04-16 Thread Tobias Warneke (JIRA)


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

Tobias Warneke commented on NETBEANS-2384:
--

Hi,

 

I attached screenshots of my plugin manager.

Using Netbeans, you could build it without any problems?

Strange.

I am as well on windows 10. Tries with Oracle JDK 1.8, OpenJDK 11.0.1 clean 
build from popupmenu netbeans --> exception.

>From the command line, I am able to build the project.

 

Regards

> 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
> Attachments: mavenproject4.zip, screenshot-1.png, screenshot-2.png, 
> screenshot-3.png
>
>
> 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] [Updated] (NETBEANS-2384) multi module maven build stops with exception

2019-04-16 Thread Tobias Warneke (JIRA)


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

Tobias Warneke updated NETBEANS-2384:
-
Attachment: screenshot-3.png

> 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
> Attachments: mavenproject4.zip, screenshot-1.png, screenshot-2.png, 
> screenshot-3.png
>
>
> 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] [Updated] (NETBEANS-2384) multi module maven build stops with exception

2019-04-16 Thread Tobias Warneke (JIRA)


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

Tobias Warneke updated NETBEANS-2384:
-
Attachment: screenshot-2.png

> 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
> Attachments: mavenproject4.zip, screenshot-1.png, screenshot-2.png
>
>
> 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] [Updated] (NETBEANS-2384) multi module maven build stops with exception

2019-04-16 Thread Tobias Warneke (JIRA)


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

Tobias Warneke updated NETBEANS-2384:
-
Attachment: screenshot-1.png

> 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
> Attachments: mavenproject4.zip, screenshot-1.png, screenshot-2.png
>
>
> 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] [Comment Edited] (NETBEANS-2384) multi module maven build stops with exception

2019-04-16 Thread Tobias Warneke (JIRA)


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

Tobias Warneke edited comment on NETBEANS-2384 at 4/16/19 1:03 PM:
---

Hi Geertjan,

 

I was able to produce a minimal example using Netbeans 11. The resulting maven 
project structure is within the attached zip file. Trying to build it, I get 
the described exception. 

So here is how I created it.
 # created a maven pom project
 # created an angular project within it
 # integrated a simple pom.xml within the angular project and registered it 
within the parent pom via 


 NodeJsApplication
 

I am using 


 com.github.eirslett
 frontend-maven-plugin
 1.6
  

with some additional configuration to build it.

 

Hope that helps.

 

Best regards and keep up the good work

 

Tobias


was (Author: wumpz):
Hi Geertjan,

 

I was able to produce a minimal example using Netbeans 11. The resulting maven 
project structure is within the attached zip file. Trying to build it, I get 
the described exception. 

So here is how I created it.
 # created a maven pom project
 # created an angular project within it
 # integrated a simple pom.xml within the angular project and registered it 
within the parent pom via 


NodeJsApplication


I am using 


com.github.eirslett
frontend-maven-plugin
1.6
 

with some additional configuration to build it.

 

Hope that helps.

 

Best regards and keep on the good work

 

Tobias

> 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
> Attachments: mavenproject4.zip
>
>
> 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-2384) multi module maven build stops with exception

2019-04-16 Thread Tobias Warneke (JIRA)


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

Tobias Warneke commented on NETBEANS-2384:
--

Hi Geertjan,

 

I was able to produce a minimal example using Netbeans 11. The resulting maven 
project structure is within the attached zip file. Trying to build it, I get 
the described exception. 

So here is how I created it.
 # created a maven pom project
 # created an angular project within it
 # integrated a simple pom.xml within the angular project and registered it 
within the parent pom via 


NodeJsApplication


I am using 


com.github.eirslett
frontend-maven-plugin
1.6
 

with some additional configuration to build it.

 

Hope that helps.

 

Best regards and keep on the good work

 

Tobias

> 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
> Attachments: mavenproject4.zip
>
>
> 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] [Updated] (NETBEANS-2384) multi module maven build stops with exception

2019-04-16 Thread Tobias Warneke (JIRA)


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

Tobias Warneke updated NETBEANS-2384:
-
Attachment: mavenproject4.zip

> 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
> Attachments: mavenproject4.zip
>
>
> 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-2384) multi module maven build stops with exception

2019-04-16 Thread Tobias Warneke (JIRA)


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

Tobias Warneke commented on NETBEANS-2384:
--

Any news here? This issue prevents me from using Netbeans 11. Isn't that enough 
motivation ;)

> 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] [Created] (NETBEANS-2402) unexpected exception while indexing

2019-04-11 Thread Tobias Warneke (JIRA)
Tobias Warneke created NETBEANS-2402:


 Summary: unexpected exception while indexing
 Key: NETBEANS-2402
 URL: https://issues.apache.org/jira/browse/NETBEANS-2402
 Project: NetBeans
  Issue Type: Bug
  Components: editor - Parsing & Indexing
Affects Versions: 11.0
Reporter: Tobias Warneke


This occured while starting Netbeans 11. But the IDE worked as expected.

 

java.lang.NullPointerException
 at 
org.netbeans.modules.java.source.indexing.VanillaCompileWorker$3.error2Object(VanillaCompileWorker.java:601)
 at 
org.netbeans.modules.java.source.indexing.VanillaCompileWorker$3.error2Object(VanillaCompileWorker.java:616)
 at 
org.netbeans.modules.java.source.indexing.VanillaCompileWorker$3.resolveErrors(VanillaCompileWorker.java:628)
 at 
org.netbeans.modules.java.source.indexing.VanillaCompileWorker$3.error2Object(VanillaCompileWorker.java:594)
 at 
org.netbeans.modules.java.source.indexing.VanillaCompileWorker$3.error2Object(VanillaCompileWorker.java:616)
 at 
org.netbeans.modules.java.source.indexing.VanillaCompileWorker$3.resolveErrors(VanillaCompileWorker.java:626)
 at 
org.netbeans.modules.java.source.indexing.VanillaCompileWorker$3.error2Object(VanillaCompileWorker.java:594)
 at 
org.netbeans.modules.java.source.indexing.VanillaCompileWorker$3.resolveErrors(VanillaCompileWorker.java:629)
 at 
org.netbeans.modules.java.source.indexing.VanillaCompileWorker$3.error2Object(VanillaCompileWorker.java:594)
 at 
org.netbeans.modules.java.source.indexing.VanillaCompileWorker$3.visitVariable(VanillaCompileWorker.java:491)
 at 
org.netbeans.modules.java.source.indexing.VanillaCompileWorker$3.visitVariable(VanillaCompileWorker.java:473)
 at 
jdk.compiler/com.sun.tools.javac.tree.JCTree$JCVariableDecl.accept(JCTree.java:974)
 at 
jdk.compiler/com.sun.source.util.TreePathScanner.scan(TreePathScanner.java:82)
 at 
jdk.compiler/com.sun.source.util.TreeScanner.scanAndReduce(TreeScanner.java:90)
 at jdk.compiler/com.sun.source.util.TreeScanner.scan(TreeScanner.java:105)
 at 
jdk.compiler/com.sun.source.util.TreeScanner.scanAndReduce(TreeScanner.java:113)
 at 
jdk.compiler/com.sun.source.util.TreeScanner.visitClass(TreeScanner.java:187)
 at 
org.netbeans.modules.java.source.indexing.VanillaCompileWorker$3.visitClass(VanillaCompileWorker.java:545)
 at 
org.netbeans.modules.java.source.indexing.VanillaCompileWorker$3.visitClass(VanillaCompileWorker.java:473)
 at 
jdk.compiler/com.sun.tools.javac.tree.JCTree$JCClassDecl.accept(JCTree.java:808)
 at 
jdk.compiler/com.sun.source.util.TreePathScanner.scan(TreePathScanner.java:82)
 at jdk.compiler/com.sun.source.util.TreeScanner.scan(TreeScanner.java:105)
 at 
jdk.compiler/com.sun.source.util.TreeScanner.scanAndReduce(TreeScanner.java:113)
 at 
jdk.compiler/com.sun.source.util.TreeScanner.visitCompilationUnit(TreeScanner.java:144)
 at 
jdk.compiler/com.sun.tools.javac.tree.JCTree$JCCompilationUnit.accept(JCTree.java:591)
 at 
jdk.compiler/com.sun.source.util.TreePathScanner.scan(TreePathScanner.java:82)
 at 
org.netbeans.modules.java.source.indexing.VanillaCompileWorker.dropMethodsAndErrors(VanillaCompileWorker.java:631)
[catch] at 
org.netbeans.modules.java.source.indexing.VanillaCompileWorker.compile(VanillaCompileWorker.java:297)
 at 
org.netbeans.modules.java.source.indexing.JavaCustomIndexer.index(JavaCustomIndexer.java:347)
 at 
org.netbeans.modules.parsing.spi.indexing.Indexable$MyAccessor$2.run(Indexable.java:138)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater.runIndexer(RepositoryUpdater.java:275)
 at 
org.netbeans.modules.parsing.spi.indexing.Indexable$MyAccessor.index(Indexable.java:136)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.doIndex(RepositoryUpdater.java:2750)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.access$800(RepositoryUpdater.java:2154)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work$1.run(RepositoryUpdater.java:2636)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work$1.run(RepositoryUpdater.java:2634)
 at 
org.netbeans.modules.parsing.impl.indexing.errors.TaskCache.refreshTransaction(TaskCache.java:540)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$Work.index(RepositoryUpdater.java:2634)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$AbstractRootsWork$4.call(RepositoryUpdater.java:5714)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$AbstractRootsWork$4.call(RepositoryUpdater.java:5622)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater$4.run(RepositoryUpdater.java:2127)
 at org.openide.util.lookup.Lookups.executeWith(Lookups.java:279)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater.runInContext(RepositoryUpdater.java:2123)
 at 
org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater.runInContext(RepositoryUpdater.java

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

2019-04-11 Thread Tobias Warneke (JIRA)


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

Tobias Warneke edited comment on NETBEANS-2384 at 4/11/19 1:25 PM:
---

It seems that Netbeans does not recognize this project as a valid Java Maven 
Project.

 

PluginPropertyUtils.java

 

{{NbMavenProjectImpl prj = project instanceof NbMavenProjectImpl ? 
(NbMavenProjectImpl)project : 
project.getLookup().lookup(NbMavenProjectImpl.class);}}{{assert prj != 
null;}}{{MavenProject mvnprj = prj.getOriginalMavenProject();   }}

 

Therefore prj must be null.

 

 


was (Author: wumpz):
It seems that Netbeans does not recognize this project as a valid Java Maven 
Project.

 

PluginPropertyUtils.java

 

NbMavenProjectImpl prj = project instanceof NbMavenProjectImpl ? 
(NbMavenProjectImpl)project : 
project.getLookup().lookup(NbMavenProjectImpl.class);

assert prj != null;

MavenProject mvnprj = prj.getOriginalMavenProject();   

 

Therefore prj must be null.

 

 

> 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] [Comment Edited] (NETBEANS-2384) multi module maven build stops with exception

2019-04-11 Thread Tobias Warneke (JIRA)


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

Tobias Warneke edited comment on NETBEANS-2384 at 4/11/19 1:25 PM:
---

It seems that Netbeans does not recognize this project as a valid Java Maven 
Project.

 

PluginPropertyUtils.java

 

NbMavenProjectImpl prj = project instanceof NbMavenProjectImpl ? 
(NbMavenProjectImpl)project : 
project.getLookup().lookup(NbMavenProjectImpl.class);

assert prj != null;

MavenProject mvnprj = prj.getOriginalMavenProject();   

 

Therefore prj must be null.

 

 


was (Author: wumpz):
It seems that Netbeans does not recognize this project as a valid Java Maven 
Project.

 

PluginPropertyUtils.java

 

 

 

 

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

2019-04-11 Thread Tobias Warneke (JIRA)


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

Tobias Warneke commented on NETBEANS-2384:
--

It seems that Netbeans does not recognize this project as a valid Java Maven 
Project.

 

PluginPropertyUtils.java

 

 

 

 

> 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-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-09 Thread Tobias Warneke (JIRA)


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

Tobias Warneke commented on NETBEANS-2384:
--

Now it happens every time on the same submodule. That is very anoying. 
Switching for the time back to Netbeans 10. There it works.

--

 

 

INFO [org.netbeans.modules.parsing.impl.indexing.RepositoryUpdater]: Complete 
indexing of 73 source roots took: 3.567 ms (New or modified files: 0, Deleted 
files: 0) [Adding listeners took: 0 ms]
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: 16 ms

> 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] [Updated] (NETBEANS-1004) NPE while scanning java files

2019-04-09 Thread Tobias Warneke (JIRA)


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

Tobias Warneke updated NETBEANS-1004:
-
Priority: Critical  (was: Major)

> NPE while scanning java files
> -
>
> Key: NETBEANS-1004
> URL: https://issues.apache.org/jira/browse/NETBEANS-1004
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 9.0
>Reporter: Tobias Warneke
>Priority: Critical
>
> java.lang.NullPointerException
>  at 
> org.netbeans.modules.j2ee.ejbverification.HintsUtils.getOrCacheContext(HintsUtils.java:246)
>  at 
> org.netbeans.modules.j2ee.ejbverification.rules.SBSuperClassNotSB.run(SBSuperClassNotSB.java:93)
>  at jdk.internal.reflect.GeneratedMethodAccessor171.invoke(Unknown Source)
>  at 
> java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>  at java.base/java.lang.reflect.Method.invoke(Method.java:564)
> [catch] at 
> org.netbeans.modules.java.hints.providers.code.CodeHintProviderImpl$WorkerImpl.createErrors(CodeHintProviderImpl.java:317)
>  at 
> org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker.runHint(HintsInvoker.java:798)
>  at 
> org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker.access$400(HintsInvoker.java:90)
>  at 
> org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker$ScannerImpl.runAndAdd(HintsInvoker.java:657)
>  at 
> org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker$ScannerImpl.scan(HintsInvoker.java:676)
>  at 
> org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker$ScannerImpl.scan(HintsInvoker.java:610)
>  at com.sun.source.util.TreeScanner.scanAndReduce(TreeScanner.java:90)
>  at com.sun.source.util.TreeScanner.visitNewClass(TreeScanner.java:526)
>  at com.sun.tools.javac.tree.JCTree$JCNewClass.accept(JCTree.java:1717)
>  at com.sun.source.util.TreePathScanner.scan(TreePathScanner.java:82)
>  at 
> org.netbeans.api.java.source.support.CancellableTreePathScanner.scan(CancellableTreePathScanner.java:69)
>  at 
> org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker$ScannerImpl.scan(HintsInvoker.java:682)
>  at 
> org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker$ScannerImpl.scan(HintsInvoker.java:610)
>  at com.sun.source.util.TreeScanner.scan(TreeScanner.java:105)
>  at 
> org.netbeans.api.java.source.support.CancellableTreePathScanner.scan(CancellableTreePathScanner.java:78)
>  at com.sun.source.util.TreeScanner.scanAndReduce(TreeScanner.java:113)
>  at 
> com.sun.source.util.TreeScanner.visitMethodInvocation(TreeScanner.java:509)
>  at 
> com.sun.tools.javac.tree.JCTree$JCMethodInvocation.accept(JCTree.java:1656)
>  at com.sun.source.util.TreePathScanner.scan(TreePathScanner.java:82)
>  at 
> org.netbeans.api.java.source.support.CancellableTreePathScanner.scan(CancellableTreePathScanner.java:69)
>  at 
> org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker$ScannerImpl.scan(HintsInvoker.java:682)
>  at 
> org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker$ScannerImpl.scan(HintsInvoker.java:610)
>  at 
> com.sun.source.util.TreeScanner.visitExpressionStatement(TreeScanner.java:433)
>  at 
> com.sun.tools.javac.tree.JCTree$JCExpressionStatement.accept(JCTree.java:1466)
>  at com.sun.source.util.TreePathScanner.scan(TreePathScanner.java:82)
>  at 
> org.netbeans.api.java.source.support.CancellableTreePathScanner.scan(CancellableTreePathScanner.java:69)
>  at 
> org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker$ScannerImpl.scan(HintsInvoker.java:682)
>  at 
> org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker$ScannerImpl.scan(HintsInvoker.java:610)
>  at com.sun.source.util.TreeScanner.scanAndReduce(TreeScanner.java:90)
>  at com.sun.source.util.TreeScanner.scan(TreeScanner.java:105)
>  at 
> org.netbeans.api.java.source.support.CancellableTreePathScanner.scan(CancellableTreePathScanner.java:78)
>  at com.sun.source.util.TreeScanner.visitBlock(TreeScanner.java:248)
>  at com.sun.tools.javac.tree.JCTree$JCBlock.accept(JCTree.java:1038)
>  at com.sun.source.util.TreePathScanner.scan(TreePathScanner.java:82)
>  at 
> org.netbeans.api.java.source.support.CancellableTreePathScanner.scan(CancellableTreePathScanner.java:69)
>  at 
> org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker$ScannerImpl.scan(HintsInvoker.java:682)
>  at 
> org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker$ScannerImpl.scan(HintsInvoker.java:610)
>  at com.sun.source.util.TreeScanner.scanAndReduce(TreeScanner.java:90)
>  at com.sun.source.util.TreeScanner.visitIf(TreeScanner.java:419)
>  at com.sun.tools.javac.tree.JCTree$JCIf.accept(JCTree.java:1439)
>  at com.sun.source.util.TreePathScanner.scan(TreePathScanner.java:82)
>  at 
> org.netbeans.api.java.source.support.CancellableTreePathScanner.scan(CancellableTreePathScanner.java:69)
>  at 
> org.netbeans.modules.java.h

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

2019-04-09 Thread Tobias Warneke (JIRA)


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

Tobias Warneke updated NETBEANS-2384:
-
Priority: Critical  (was: Major)

> 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] [Created] (NETBEANS-2384) multi module maven build stops with exception

2019-04-09 Thread Tobias Warneke (JIRA)
Tobias Warneke created NETBEANS-2384:


 Summary: 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


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] [Created] (NETBEANS-1439) unable to use OutlineView from palette via choose bean, due to missing javax.activation in JDK >=9

2018-10-16 Thread Tobias Warneke (JIRA)
Tobias Warneke created NETBEANS-1439:


 Summary: unable to use OutlineView from palette via choose bean, 
due to missing javax.activation in JDK >=9
 Key: NETBEANS-1439
 URL: https://issues.apache.org/jira/browse/NETBEANS-1439
 Project: NetBeans
  Issue Type: Bug
  Components: java - Platform
Affects Versions: 9.0
Reporter: Tobias Warneke


I want to design a form for a Netbeans platform application. Here I want to use 
a

*org.openide.explorer.view.OutlineView*

Running Netbeans 9 (Dev IDE) with Java 10 / 9 I am not able to choose this view 
using Choose Bean. It results in a missing class exception from

*javax.activation*

 

I am aware that this was removed. So how do I get the replacement jar into 
netbeans:

 

 
}}{{com.sun.activation 
javax.activation 
}}{{1.2.0 
}}{{



--
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-1008) ClassCastException while editing java 8 files

2018-06-27 Thread Tobias Warneke (JIRA)
Tobias Warneke created NETBEANS-1008:


 Summary: ClassCastException while editing java 8 files
 Key: NETBEANS-1008
 URL: https://issues.apache.org/jira/browse/NETBEANS-1008
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 9.0
Reporter: Tobias Warneke


Caused: java.lang.ClassCastException: com.sun.tools.javac.tree.JCTree$JCLambda 
cannot be cast to com.sun.tools.javac.tree.JCTree$JCMethodInvocation
 at 
com.sun.tools.javac.comp.ArgumentAttr$ResolvedMethodType.dup(ArgumentAttr.java:607)
 at com.sun.tools.javac.comp.ArgumentAttr.processArg(ArgumentAttr.java:240)
 at com.sun.tools.javac.comp.ArgumentAttr.visitLambda(ArgumentAttr.java:293)
 at com.sun.tools.javac.tree.JCTree$JCLambda.accept(JCTree.java:1813)
 at com.sun.tools.javac.comp.ArgumentAttr.attribArg(ArgumentAttr.java:197)
 at com.sun.tools.javac.comp.Attr.attribTree(Attr.java:658)
 at com.sun.tools.javac.comp.Attr.attribArgs(Attr.java:769)
 at com.sun.tools.javac.comp.Attr.visitApply(Attr.java:2049)
 at com.sun.tools.javac.tree.JCTree$JCMethodInvocation.accept(JCTree.java:1640)
 at com.sun.tools.javac.comp.Attr.attribTree(Attr.java:660)
 at com.sun.tools.javac.comp.Attr.visitLambda(Attr.java:2726)
 at com.sun.tools.javac.tree.JCTree$JCLambda.accept(JCTree.java:1813)
 at com.sun.tools.javac.comp.Attr.attribTree(Attr.java:660)
 at com.sun.tools.javac.comp.DeferredAttr$4.complete(DeferredAttr.java:371)
 at 
com.sun.tools.javac.comp.DeferredAttr$DeferredType.check(DeferredAttr.java:332)
 at 
com.sun.tools.javac.comp.DeferredAttr$DeferredType.check(DeferredAttr.java:318)
 at com.sun.tools.javac.comp.Resolve$MethodResultInfo.check(Resolve.java:1048)
 at com.sun.tools.javac.comp.Resolve$4.checkArg(Resolve.java:875)
 at 
com.sun.tools.javac.comp.Resolve$AbstractMethodCheck.argumentsAcceptable(Resolve.java:783)
 at com.sun.tools.javac.comp.Resolve$4.argumentsAcceptable(Resolve.java:884)
 at com.sun.tools.javac.comp.Resolve.rawInstantiate(Resolve.java:626)
 at com.sun.tools.javac.comp.Resolve.checkMethod(Resolve.java:652)
 at com.sun.tools.javac.comp.Attr.checkMethod(Attr.java:4401)
 at com.sun.tools.javac.comp.Attr.checkIdInternal(Attr.java:4189)
 at com.sun.tools.javac.comp.Attr.checkMethodIdInternal(Attr.java:4088)
 at com.sun.tools.javac.comp.Attr.checkMethodId(Attr.java:4067)
 at com.sun.tools.javac.comp.Attr.checkId(Attr.java:4054)
 at com.sun.tools.javac.comp.Attr.visitSelect(Attr.java:3939)
 at com.sun.tools.javac.tree.JCTree$JCFieldAccess.accept(JCTree.java:2116)
 at com.sun.tools.javac.comp.Attr.attribTree(Attr.java:660)
 at com.sun.tools.javac.comp.Attr.visitApply(Attr.java:2066)
 at com.sun.tools.javac.tree.JCTree$JCMethodInvocation.accept(JCTree.java:1640)
 at com.sun.tools.javac.comp.Attr.attribTree(Attr.java:660)
 at com.sun.tools.javac.comp.Attr.attribExpr(Attr.java:713)
 at com.sun.tools.javac.comp.Attr.visitExec(Attr.java:1825)
 at 
com.sun.tools.javac.tree.JCTree$JCExpressionStatement.accept(JCTree.java:1458)
 at com.sun.tools.javac.comp.Attr.attribTree(Attr.java:660)
 at com.sun.tools.javac.comp.Attr.attribStat(Attr.java:736)
 at com.sun.tools.javac.comp.Attr.attribStats(Attr.java:760)
 at com.sun.tools.javac.comp.Attr.visitBlock(Attr.java:1337)
 at org.netbeans.lib.nbjavac.services.NBAttr.visitBlock(NBAttr.java:69)
 at com.sun.tools.javac.tree.JCTree$JCBlock.accept(JCTree.java:1026)
 at com.sun.tools.javac.comp.Attr.attribTree(Attr.java:660)
 at com.sun.tools.javac.comp.Attr.attribStat(Attr.java:736)
 at 
org.netbeans.modules.java.source.nbjavac.parsing.PartialReparserService.reattrMethodBody(PartialReparserService.java:180)
[catch] at 
org.netbeans.modules.java.source.nbjavac.parsing.PartialReparserImpl.reparseMethod(PartialReparserImpl.java:164)
 at 
org.netbeans.modules.java.source.parsing.JavacParser.parseImpl(JavacParser.java:397)
 at 
org.netbeans.modules.java.source.parsing.JavacParser.parse(JavacParser.java:330)
 at 
org.netbeans.modules.parsing.impl.TaskProcessor.callParse(TaskProcessor.java:598)
 at 
org.netbeans.modules.parsing.impl.SourceCache.getResult(SourceCache.java:228)
 at 
org.netbeans.modules.parsing.impl.TaskProcessor$RequestPerformer.run(TaskProcessor.java:775)
 at org.openide.util.lookup.Lookups.executeWith(Lookups.java:279)
 at 
org.netbeans.modules.parsing.impl.TaskProcessor$RequestPerformer.execute(TaskProcessor.java:702)
 at 
org.netbeans.modules.parsing.impl.TaskProcessor$CompilationJob.run(TaskProcessor.java:663)
 at 
java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:514)
 at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
 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)



--
This message was

[jira] [Created] (NETBEANS-1004) NPE while scanning java files

2018-06-27 Thread Tobias Warneke (JIRA)
Tobias Warneke created NETBEANS-1004:


 Summary: NPE while scanning java files
 Key: NETBEANS-1004
 URL: https://issues.apache.org/jira/browse/NETBEANS-1004
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 9.0
Reporter: Tobias Warneke


java.lang.NullPointerException
 at 
org.netbeans.modules.j2ee.ejbverification.HintsUtils.getOrCacheContext(HintsUtils.java:246)
 at 
org.netbeans.modules.j2ee.ejbverification.rules.SBSuperClassNotSB.run(SBSuperClassNotSB.java:93)
 at jdk.internal.reflect.GeneratedMethodAccessor171.invoke(Unknown Source)
 at 
java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.base/java.lang.reflect.Method.invoke(Method.java:564)
[catch] at 
org.netbeans.modules.java.hints.providers.code.CodeHintProviderImpl$WorkerImpl.createErrors(CodeHintProviderImpl.java:317)
 at 
org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker.runHint(HintsInvoker.java:798)
 at 
org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker.access$400(HintsInvoker.java:90)
 at 
org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker$ScannerImpl.runAndAdd(HintsInvoker.java:657)
 at 
org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker$ScannerImpl.scan(HintsInvoker.java:676)
 at 
org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker$ScannerImpl.scan(HintsInvoker.java:610)
 at com.sun.source.util.TreeScanner.scanAndReduce(TreeScanner.java:90)
 at com.sun.source.util.TreeScanner.visitNewClass(TreeScanner.java:526)
 at com.sun.tools.javac.tree.JCTree$JCNewClass.accept(JCTree.java:1717)
 at com.sun.source.util.TreePathScanner.scan(TreePathScanner.java:82)
 at 
org.netbeans.api.java.source.support.CancellableTreePathScanner.scan(CancellableTreePathScanner.java:69)
 at 
org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker$ScannerImpl.scan(HintsInvoker.java:682)
 at 
org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker$ScannerImpl.scan(HintsInvoker.java:610)
 at com.sun.source.util.TreeScanner.scan(TreeScanner.java:105)
 at 
org.netbeans.api.java.source.support.CancellableTreePathScanner.scan(CancellableTreePathScanner.java:78)
 at com.sun.source.util.TreeScanner.scanAndReduce(TreeScanner.java:113)
 at com.sun.source.util.TreeScanner.visitMethodInvocation(TreeScanner.java:509)
 at com.sun.tools.javac.tree.JCTree$JCMethodInvocation.accept(JCTree.java:1656)
 at com.sun.source.util.TreePathScanner.scan(TreePathScanner.java:82)
 at 
org.netbeans.api.java.source.support.CancellableTreePathScanner.scan(CancellableTreePathScanner.java:69)
 at 
org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker$ScannerImpl.scan(HintsInvoker.java:682)
 at 
org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker$ScannerImpl.scan(HintsInvoker.java:610)
 at 
com.sun.source.util.TreeScanner.visitExpressionStatement(TreeScanner.java:433)
 at 
com.sun.tools.javac.tree.JCTree$JCExpressionStatement.accept(JCTree.java:1466)
 at com.sun.source.util.TreePathScanner.scan(TreePathScanner.java:82)
 at 
org.netbeans.api.java.source.support.CancellableTreePathScanner.scan(CancellableTreePathScanner.java:69)
 at 
org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker$ScannerImpl.scan(HintsInvoker.java:682)
 at 
org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker$ScannerImpl.scan(HintsInvoker.java:610)
 at com.sun.source.util.TreeScanner.scanAndReduce(TreeScanner.java:90)
 at com.sun.source.util.TreeScanner.scan(TreeScanner.java:105)
 at 
org.netbeans.api.java.source.support.CancellableTreePathScanner.scan(CancellableTreePathScanner.java:78)
 at com.sun.source.util.TreeScanner.visitBlock(TreeScanner.java:248)
 at com.sun.tools.javac.tree.JCTree$JCBlock.accept(JCTree.java:1038)
 at com.sun.source.util.TreePathScanner.scan(TreePathScanner.java:82)
 at 
org.netbeans.api.java.source.support.CancellableTreePathScanner.scan(CancellableTreePathScanner.java:69)
 at 
org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker$ScannerImpl.scan(HintsInvoker.java:682)
 at 
org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker$ScannerImpl.scan(HintsInvoker.java:610)
 at com.sun.source.util.TreeScanner.scanAndReduce(TreeScanner.java:90)
 at com.sun.source.util.TreeScanner.visitIf(TreeScanner.java:419)
 at com.sun.tools.javac.tree.JCTree$JCIf.accept(JCTree.java:1439)
 at com.sun.source.util.TreePathScanner.scan(TreePathScanner.java:82)
 at 
org.netbeans.api.java.source.support.CancellableTreePathScanner.scan(CancellableTreePathScanner.java:69)
 at 
org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker$ScannerImpl.scan(HintsInvoker.java:682)
 at 
org.netbeans.modules.java.hints.spiimpl.hints.HintsInvoker$ScannerImpl.scan(HintsInvoker.java:610)
 at com.sun.source.util.TreeScanner.scanAndReduce(TreeScanner.java:90)
 at com.sun.source.util.TreeScanner.scan(TreeScanner.java:105)
 at 
org.netbeans.api.java.source.support.CancellableTreePathScann