[jira] [Updated] (NETBEANS-577) Even though the source level of is set to: 10, java.util.zip.CRC32C cannot be found on the system module path

2018-04-02 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot updated NETBEANS-577:

Labels: pull-request-available  (was: )

> Even though the source level of  is set to: 10, java.util.zip.CRC32C cannot 
> be found on the system module path
> --
>
> Key: NETBEANS-577
> URL: https://issues.apache.org/jira/browse/NETBEANS-577
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 9.0
>Reporter: Jan Lahoda
>Assignee: Jan Lahoda
>Priority: Major
>  Labels: pull-request-available
> Fix For: 9.0
>
>
> Run "Refactor/Inspect and Transform" on a JDK 9+ project. This will print 
> something like:
> Even though the source level of  is set to: 10, java.util.zip.CRC32C cannot 
> be found on the system module path:...
> to the messages.log. The reason is that the ClasspathInfos for bulk hint 
> processing don't have the proper modular paths set.



--
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-577) Even though the source level of is set to: 10, java.util.zip.CRC32C cannot be found on the system module path

2018-04-02 Thread Jan Lahoda (JIRA)
Jan Lahoda created NETBEANS-577:
---

 Summary: Even though the source level of  is set to: 10, 
java.util.zip.CRC32C cannot be found on the system module path
 Key: NETBEANS-577
 URL: https://issues.apache.org/jira/browse/NETBEANS-577
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 9.0
Reporter: Jan Lahoda
Assignee: Jan Lahoda
 Fix For: 9.0


Run "Refactor/Inspect and Transform" on a JDK 9+ project. This will print 
something like:

Even though the source level of  is set to: 10, java.util.zip.CRC32C cannot be 
found on the system module path:...

to the messages.log. The reason is that the ClasspathInfos for bulk hint 
processing don't have the proper modular paths set.



--
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-570) Create file other than source should do it in resources not in sources.

2018-04-02 Thread JIRA

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

Alied Pérez Martínez updated NETBEANS-570:
--
Issue Type: Improvement  (was: Bug)

> Create file other than source should do it in resources not in sources.
> ---
>
> Key: NETBEANS-570
> URL: https://issues.apache.org/jira/browse/NETBEANS-570
> Project: NetBeans
>  Issue Type: Improvement
>  Components: projects - Maven
>Affects Versions: 9.0
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-linux-386-on-20180402)
> Java: 10; Java HotSpot(TM) 64-Bit Server VM 10+46
> Runtime: Java(TM) SE Runtime Environment 10+46
> System: Linux version 4.15.14 running on amd64; UTF-8; en_US (nb)
> User directory: /home/alied/.netbeans/beta
> Cache directory: /home/alied/.cache/netbeans/beta
>Reporter: Alied Pérez Martínez
>Priority: Minor
>  Labels: maven
>
> in test case Create XML document[1] a new XML document is created. Creation 
> of files other than java files should go to resources 
> ({{src/main/resources}}) instead of sources ({{src/main/java}}), as by Maven 
> conventions[2]. Therefore a new XML file should be created in resources, not 
> in sources.
> [1] http://netbeans-vm.apache.org/synergy/client/app/#/assignment/2147/v/1
> [2] 
> https://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html



--
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-576) The FindBugs plugin works with JDK8 but not with JDK10

2018-04-02 Thread Rick Hegarty (JIRA)

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

Rick Hegarty updated NETBEANS-576:
--
Description: 
[1] I created a trivial Java application with some issues for FindBugs to 
identify:
{quote}*package app;*

*public class App {*

*static String s1; int j; Boolean b1;*

*public static void main(String[] args) {*
     *System.out.println("JRE version: " + System.getProperty("java.version"));*
     *if (s1 == "abc") {*
     *}*
 *}*

*public boolean equals(App i) {*

    *int j = this.hashCode();*
     *return this.equals(new App());*
 *}*

*}*
{quote}
[2] When the application was run it displayed displayed: *JRE version: 
1.8.0_162*. 

[3]Then I ran *Source > Inspect...* using FindBugs (version 1.32) on the file 
*App.java*. FindBugs identified eight issues in the *Inspector* window, as 
shown in the attached screen shot *FindBugsJDK8.png*.

[4]Next I added JDK 10 as a Java platform, and amended the properties of the 
project as follows:
 - Libraries > Java Platform: *JDK 10*

 - Sources > Source/Binary Format: *JDK 10*

[5]As expected, when the application was run again it displayed: *JRE version: 
10* 

[6] However, when I ran *Source > Inspect...* using FindBugs on the file 
*App.java* again, using code compiled and run with JDK10, there was no FindBugs 
output in the *Inspector* window. See the attached screen shot 
*FindBugsJDK10.png*.

(My understanding is that FindBugs hasn't been updated for several years. Could 
NetBeans possibly use its successor, SpotBugs, as a plugin instead?)

 

Environment Details:

{{*Product Version:* Apache NetBeans IDE Dev (Build 
incubator-netbeans-linux-388-on-20180402)}}
{{*Java:* 1.8.0_162; Java HotSpot(TM) 64-Bit Server VM 25.162-b12}}{{*Runtime:* 
Java(TM) SE Runtime Environment 1.8.0_162-b12}}{{*System:* Windows 10 version 
10.0 running on amd64; Cp1252; en_US (nb)}}{{*User directory:* 
C:\Users\johndoe\AppData\Roaming\NetBeans\dev}}{{*Cache directory:* 
C:\Users\johndoe\AppData\Local\NetBeans\Cache\dev}}

  was:
[1] I created a trivial Java application with some issues for FindBugs to 
identify:

 
{quote}*package app;*

*public class App {*

*static String s1; int j; Boolean b1;*

*public static void main(String[] args) {*
     *System.out.println("JRE version: " + System.getProperty("java.version"));*
     *if (s1 == "abc") {*
     *}*
 *}*

*public boolean equals(App i) {*

    *int j = this.hashCode();*
     *return this.equals(new App());*
 *}*

*}*
{quote}
[2] When the application was run it displayed displayed: *JRE version: 
1.8.0_162*. 

[3]Then I ran *Source > Inspect...* using FindBugs (version 1.32) on the file 
*App.java*. FindBugs identified eight issues in the *Inspector* window, as 
shown in the attached screen shot *FindBugsJDK8.png*.

[4]Next I added JDK 10 as a Java platform, and amended the properties of the 
project as follows:
 - Libraries > Java Platform: *JDK 10*

 - Sources > Source/Binary Format: *JDK 10*

[5]As expected, when the application was run again it displayed: *JRE version: 
10* 

[6] However, when I ran *Source > Inspect...* using FindBugs on the file 
*App.java* again, using code compiled and run with JDK10, there was no FindBugs 
output in the *Inspector* window. See the attached screen shot 
*FindBugsJDK10.png*.

(My understanding is that FindBugs hasn't been updated for several years. Could 
NetBeans possibly use its successor, SpotBugs, as a plugin instead?)

 

 

 


> The FindBugs plugin works with JDK8 but not with JDK10
> --
>
> Key: NETBEANS-576
> URL: https://issues.apache.org/jira/browse/NETBEANS-576
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - FindBugs
>Affects Versions: 9.0
>Reporter: Rick Hegarty
>Priority: Minor
> Attachments: FindBugsJDK10.png, FindBugsJDK8.png
>
>
> [1] I created a trivial Java application with some issues for FindBugs to 
> identify:
> {quote}*package app;*
> *public class App {*
> *static String s1; int j; Boolean b1;*
> *public static void main(String[] args) {*
>      *System.out.println("JRE version: " + 
> System.getProperty("java.version"));*
>      *if (s1 == "abc") {*
>      *}*
>  *}*
> *public boolean equals(App i) {*
>     *int j = this.hashCode();*
>      *return this.equals(new App());*
>  *}*
> *}*
> {quote}
> [2] When the application was run it displayed displayed: *JRE version: 
> 1.8.0_162*. 
> [3]Then I ran *Source > Inspect...* using FindBugs (version 1.32) on the file 
> *App.java*. FindBugs identified eight issues in the *Inspector* window, as 
> shown in the attached 

[jira] [Updated] (NETBEANS-100) maven.indexer depends on patched SNAPSHOT

2018-04-02 Thread JIRA

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

Alied Pérez Martínez updated NETBEANS-100:
--
Description: 
maven.indexer module loads a patched binary 
org.apache.maven.indexer:maven-indexer:6.0-SNAPSHOT, which cannot obviously be 
retrieved from maven central.  maven.indexer also includes the patch, so it 
should be possible to create a solution to build the patched version as a 
separate project.

See the discussion at [PR 
163|https://github.com/apache/incubator-netbeans/pull/163] for more detail and 
background.

  was:
maven.indexer module loads a patched binary 
org.apache.maven.indexer:maven-indexer:6.0-SNAPSHOT, which cannot obviously be 
retrieved from maven central.  maven.indexer also includes the patch, so it 
should be possible to create a solution to build the patched version as a 
seperate project.

See the discussion at [PR 
163|https://github.com/apache/incubator-netbeans/pull/163] for more detail and 
background.


> maven.indexer depends on patched SNAPSHOT
> -
>
> Key: NETBEANS-100
> URL: https://issues.apache.org/jira/browse/NETBEANS-100
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 9.0
>Reporter: Ross Lamont
>Priority: Major
>
> maven.indexer module loads a patched binary 
> org.apache.maven.indexer:maven-indexer:6.0-SNAPSHOT, which cannot obviously 
> be retrieved from maven central.  maven.indexer also includes the patch, so 
> it should be possible to create a solution to build the patched version as a 
> separate project.
> See the discussion at [PR 
> 163|https://github.com/apache/incubator-netbeans/pull/163] for more detail 
> and background.



--
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-576) The FindBugs plugin works with JDK8 but not with JDK10

2018-04-02 Thread Rick Hegarty (JIRA)
Rick Hegarty created NETBEANS-576:
-

 Summary: The FindBugs plugin works with JDK8 but not with JDK10
 Key: NETBEANS-576
 URL: https://issues.apache.org/jira/browse/NETBEANS-576
 Project: NetBeans
  Issue Type: Bug
  Components: java - FindBugs
Affects Versions: 9.0
Reporter: Rick Hegarty






--
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-573) Cannot remove relocated dependency

2018-04-02 Thread JIRA

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

Alied Pérez Martínez updated NETBEANS-573:
--
Component/s: projects - Maven

> Cannot remove relocated dependency
> --
>
> Key: NETBEANS-573
> URL: https://issues.apache.org/jira/browse/NETBEANS-573
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 9.0
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-linux-386-on-20180402)
> Java: 10; Java HotSpot(TM) 64-Bit Server VM 10+46
> Runtime: Java(TM) SE Runtime Environment 10+46
> System: Linux version 4.15.14 running on amd64; UTF-8; en_US (nb)
> User directory: /home/alied/.netbeans/beta
> Cache directory: /home/alied/.cache/netbeans/beta
>Reporter: Alied Pérez Martínez
>Priority: Critical
>  Labels: maven
> Attachments: QuickstartPrj.zip, ide.log
>
>
> Steps to reproduce;
>  * Add a relocated dependency, such as:
> {code:xml}
>     
>     jfreechart
>     jfreechart
>     1.0.0
>     
> {code}
> * Click on the Library node under Dependencies node in projects view and 
> invoke popup menu.
> * Select Remove Dependency
> *Expected:* The dependency should be removed
> *Actual:* A message in the status bar states: "1 dependencies declared in 
> parent project(s) were not removed." and the dependency is not removed from 
> the project.
> Probably related to https://netbeans.org/bugzilla/show_bug.cgi?id=253929



--
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-575) Code Generator Failed to "Generate Instance" method

2018-04-02 Thread will mason (JIRA)
will mason created NETBEANS-575:
---

 Summary: Code Generator Failed to "Generate  Instance" method
 Key: NETBEANS-575
 URL: https://issues.apache.org/jira/browse/NETBEANS-575
 Project: NetBeans
  Issue Type: Bug
  Components: editor - Refactoring, java - Source
Affects Versions: 9.0
 Environment: from about window

Product Version: Apache NetBeans IDE Dev (Build 
incubator-netbeans-release-205-on-20180202)
Updates: NetBeans IDE is updated to version NetBeans 8.2 Patch 2
Java: 10; Java HotSpot(TM) 64-Bit Server VM 10+46
Runtime: Java(TM) SE Runtime Environment 10+46
System: Windows 10 version 10.0 running on amd64; Cp1252; en_AU (nb)
User directory: Z:\tmp\.other\user\netbeans\v09.00-beta\watchdog
Cache directory: Z:\tmp\.other\cache\netbeans\watchdog-09
Reporter: will mason


h3. Expected
*  Use ALT/Insert to  generate missing interface method
* Select "Implement Method"
*  Select 2 x methods to  be generate
**  One method does NOT exist
**  Another method Did exist 
*  Press *Generate*
* Generate the absent method(s)
* Display some kind of error message for existing method(s).

h3. Actual

* *GeneratorUtils* crashed
* Nothing happened -- Especially no message to tell me nothing was generated.

h3. supporting material

 Stack Dump follows 

{noformat}
org.netbeans.modules.java.editor.codegen.GeneratorUtils$DuplicateMemberException:
 Class member already exists
at 
org.netbeans.modules.java.editor.codegen.GeneratorUtils.insertClassMembers(GeneratorUtils.java:173)
at 
org.netbeans.modules.java.editor.codegen.GeneratorUtils.generateAbstractMethodImplementations(GeneratorUtils.java:94)
at 
org.netbeans.modules.java.editor.codegen.ImplementOverrideMethodGenerator$3.run(ImplementOverrideMethodGenerator.java:299)
at 
org.netbeans.modules.java.editor.codegen.ImplementOverrideMethodGenerator$3.run(ImplementOverrideMethodGenerator.java:279)
at org.netbeans.api.java.source.JavaSource$1.run(JavaSource.java:672)
at org.netbeans.api.java.source.JavaSource$1.run(JavaSource.java:662)
at 
org.netbeans.api.java.source.JavaSource$MultiTask.run(JavaSource.java:501)
at 
org.netbeans.modules.parsing.impl.TaskProcessor.callUserTask(TaskProcessor.java:586)
at 
org.netbeans.modules.parsing.api.ParserManager$UserTaskAction.run(ParserManager.java:130)
at 
org.netbeans.modules.parsing.api.ParserManager$UserTaskAction.run(ParserManager.java:114)
at 
org.netbeans.modules.parsing.impl.TaskProcessor$2.call(TaskProcessor.java:181)
at 
org.netbeans.modules.parsing.impl.TaskProcessor$2.call(TaskProcessor.java:178)
at 
org.netbeans.modules.masterfs.filebasedfs.utils.FileChangedManager.priorityIO(FileChangedManager.java:153)
at 
org.netbeans.modules.masterfs.providers.ProvidedExtensions.priorityIO(ProvidedExtensions.java:335)
at 
org.netbeans.modules.parsing.nb.DataObjectEnvFactory.runPriorityIO(DataObjectEnvFactory.java:118)
at 
org.netbeans.modules.parsing.impl.Utilities.runPriorityIO(Utilities.java:67)
at 
org.netbeans.modules.parsing.impl.TaskProcessor.runUserTask(TaskProcessor.java:178)
at 
org.netbeans.modules.parsing.api.ParserManager.parse(ParserManager.java:81)
at 
org.netbeans.api.java.source.JavaSource.runUserActionTaskImpl(JavaSource.java:451)
at 
org.netbeans.api.java.source.JavaSource.runUserActionTask(JavaSource.java:422)
at 
org.netbeans.api.java.source.JavaSource.runModificationTask(JavaSource.java:683)
at 
org.netbeans.modules.java.editor.codegen.ImplementOverrideMethodGenerator.invoke(ImplementOverrideMethodGenerator.java:279)
at 
org.netbeans.modules.editor.codegen.GenerateCodePanel.invokeSelected(GenerateCodePanel.java:165)
at 
org.netbeans.modules.editor.codegen.GenerateCodePanel.listKeyPressed(GenerateCodePanel.java:121)
at 
org.netbeans.modules.editor.codegen.GenerateCodePanel.access$200(GenerateCodePanel.java:41)
at 
org.netbeans.modules.editor.codegen.GenerateCodePanel$4.keyPressed(GenerateCodePanel.java:95)
at 
java.desktop/java.awt.AWTEventMulticaster.keyPressed(AWTEventMulticaster.java:258)
at java.desktop/java.awt.Component.processKeyEvent(Component.java:6547)
at 
java.desktop/javax.swing.JComponent.processKeyEvent(JComponent.java:2849)
at java.desktop/java.awt.Component.processEvent(Component.java:6366)
at java.desktop/java.awt.Container.processEvent(Container.java:2260)
at 
java.desktop/java.awt.Component.dispatchEventImpl(Component.java:4966)
at 
java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2318)
at java.desktop/java.awt.Component.dispatchEvent(Component.java:4798)
at 
java.desktop/java.awt.KeyboardFocusManager.redispatchEvent(KeyboardFocusManager.java:1950)
at 

[jira] [Updated] (NETBEANS-573) Cannot remove relocated dependency

2018-04-02 Thread JIRA

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

Alied Pérez Martínez updated NETBEANS-573:
--
Priority: Critical  (was: Major)

> Cannot remove relocated dependency
> --
>
> Key: NETBEANS-573
> URL: https://issues.apache.org/jira/browse/NETBEANS-573
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 9.0
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-linux-386-on-20180402)
> Java: 10; Java HotSpot(TM) 64-Bit Server VM 10+46
> Runtime: Java(TM) SE Runtime Environment 10+46
> System: Linux version 4.15.14 running on amd64; UTF-8; en_US (nb)
> User directory: /home/alied/.netbeans/beta
> Cache directory: /home/alied/.cache/netbeans/beta
>Reporter: Alied Pérez Martínez
>Priority: Critical
>  Labels: maven
> Attachments: QuickstartPrj.zip, ide.log
>
>
> Steps to reproduce;
>  * Add a relocated dependency, such as:
> {code:xml}
>     
>     jfreechart
>     jfreechart
>     1.0.0
>     
> {code}
> * Click on the Library node under Dependencies node in projects view and 
> invoke popup menu.
> * Select Remove Dependency
> *Expected:* The dependency should be removed
> *Actual:* A message in the status bar states: "1 dependencies declared in 
> parent project(s) were not removed." and the dependency is not removed from 
> the project.
> Probably related to https://netbeans.org/bugzilla/show_bug.cgi?id=253929



--
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-573) Cannot remove relocated dependency

2018-04-02 Thread JIRA

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

Alied Pérez Martínez updated NETBEANS-573:
--
Labels: maven  (was: )

> Cannot remove relocated dependency
> --
>
> Key: NETBEANS-573
> URL: https://issues.apache.org/jira/browse/NETBEANS-573
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 9.0
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-linux-386-on-20180402)
> Java: 10; Java HotSpot(TM) 64-Bit Server VM 10+46
> Runtime: Java(TM) SE Runtime Environment 10+46
> System: Linux version 4.15.14 running on amd64; UTF-8; en_US (nb)
> User directory: /home/alied/.netbeans/beta
> Cache directory: /home/alied/.cache/netbeans/beta
>Reporter: Alied Pérez Martínez
>Priority: Critical
>  Labels: maven
> Attachments: QuickstartPrj.zip, ide.log
>
>
> Steps to reproduce;
>  * Add a relocated dependency, such as:
> {code:xml}
>     
>     jfreechart
>     jfreechart
>     1.0.0
>     
> {code}
> * Click on the Library node under Dependencies node in projects view and 
> invoke popup menu.
> * Select Remove Dependency
> *Expected:* The dependency should be removed
> *Actual:* A message in the status bar states: "1 dependencies declared in 
> parent project(s) were not removed." and the dependency is not removed from 
> the project.
> Probably related to https://netbeans.org/bugzilla/show_bug.cgi?id=253929



--
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-572) non existing dependencies are not shown under the Dependencies node

2018-04-02 Thread JIRA

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

Alied Pérez Martínez updated NETBEANS-572:
--
Component/s: projects - Maven

> non existing dependencies are not shown under the Dependencies node
> ---
>
> Key: NETBEANS-572
> URL: https://issues.apache.org/jira/browse/NETBEANS-572
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 9.0
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-linux-386-on-20180402)
> Java: 10; Java HotSpot(TM) 64-Bit Server VM 10+46
> Runtime: Java(TM) SE Runtime Environment 10+46
> System: Linux version 4.15.14 running on amd64; UTF-8; en_US (nb)
> User directory: /home/alied/.netbeans/beta
> Cache directory: /home/alied/.cache/netbeans/beta
>Reporter: Alied Pérez Martínez
>Priority: Major
> Attachments: image-2018-04-02-18-50-59-832.png, 
> image-2018-04-02-18-52-29-308.png
>
>
> While testing Manually Install Artifact Test Case I added a non-existing 
> dependency to the POM in order to manually add an artifact:
> {code:xml}
> 
> org-apache-batik
> parser
> 1.7
> 
> {code}
> *Expected:* A new node for the non-existing dependency should appear under 
> the Dependencies node with an overlaid warning sign as Netbeans 8.2:
> !image-2018-04-02-18-52-29-308.png!
>  *Actual:* The newly-added dependency does not appear under the Dependencies 
> node:
> !image-2018-04-02-18-50-59-832.png!



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

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

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



[jira] [Updated] (NETBEANS-570) Create file other than source should do it in resources not in sources.

2018-04-02 Thread JIRA

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

Alied Pérez Martínez updated NETBEANS-570:
--
Labels: maven  (was: )

> Create file other than source should do it in resources not in sources.
> ---
>
> Key: NETBEANS-570
> URL: https://issues.apache.org/jira/browse/NETBEANS-570
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 9.0
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-linux-386-on-20180402)
> Java: 10; Java HotSpot(TM) 64-Bit Server VM 10+46
> Runtime: Java(TM) SE Runtime Environment 10+46
> System: Linux version 4.15.14 running on amd64; UTF-8; en_US (nb)
> User directory: /home/alied/.netbeans/beta
> Cache directory: /home/alied/.cache/netbeans/beta
>Reporter: Alied Pérez Martínez
>Priority: Minor
>  Labels: maven
>
> in test case Create XML document[1] a new XML document is created. Creation 
> of files other than java files should go to resources 
> ({{src/main/resources}}) instead of sources ({{src/main/java}}), as by Maven 
> conventions[2]. Therefore a new XML file should be created in resources, not 
> in sources.
> [1] http://netbeans-vm.apache.org/synergy/client/app/#/assignment/2147/v/1
> [2] 
> https://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html



--
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-570) Create file other than source should do it in resources not in sources.

2018-04-02 Thread JIRA

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

Alied Pérez Martínez updated NETBEANS-570:
--
Priority: Minor  (was: Major)

> Create file other than source should do it in resources not in sources.
> ---
>
> Key: NETBEANS-570
> URL: https://issues.apache.org/jira/browse/NETBEANS-570
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 9.0
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-linux-386-on-20180402)
> Java: 10; Java HotSpot(TM) 64-Bit Server VM 10+46
> Runtime: Java(TM) SE Runtime Environment 10+46
> System: Linux version 4.15.14 running on amd64; UTF-8; en_US (nb)
> User directory: /home/alied/.netbeans/beta
> Cache directory: /home/alied/.cache/netbeans/beta
>Reporter: Alied Pérez Martínez
>Priority: Minor
>  Labels: maven
>
> in test case Create XML document[1] a new XML document is created. Creation 
> of files other than java files should go to resources 
> ({{src/main/resources}}) instead of sources ({{src/main/java}}), as by Maven 
> conventions[2]. Therefore a new XML file should be created in resources, not 
> in sources.
> [1] http://netbeans-vm.apache.org/synergy/client/app/#/assignment/2147/v/1
> [2] 
> https://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html



--
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-569) Sources node in project properties do not reflect source/binary specified in POM

2018-04-02 Thread JIRA

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

Alied Pérez Martínez updated NETBEANS-569:
--
Labels: maven  (was: )

> Sources node in project properties do not reflect source/binary specified in 
> POM
> 
>
> Key: NETBEANS-569
> URL: https://issues.apache.org/jira/browse/NETBEANS-569
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 9.0
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-linux-386-on-20180402)
> Java: 10; Java HotSpot(TM) 64-Bit Server VM 10+46
> Runtime: Java(TM) SE Runtime Environment 10+46
> System: Linux version 4.15.14 running on amd64; UTF-8; en_US (nb)
> User directory: /home/alied/.netbeans/beta
> Cache directory: /home/alied/.cache/netbeans/beta
>Reporter: Alied Pérez Martínez
>Priority: Major
>  Labels: maven
> Attachments: image-2018-04-02-16-15-47-554.png, pom.xml
>
>
> The Sources node in project properties states source/binary format as 1.3 
> while the POM says 10:
> !image-2018-04-02-16-15-47-554.png!
> POM section (full POM here: [^pom.xml]):
> {code:xml}
> 
> UTF-8
> 10
> 10
> 
> {code}
> This version was automatically set when the project was created.



--
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-569) Sources node in project properties do not reflect source/binary specified in POM

2018-04-02 Thread JIRA

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

Alied Pérez Martínez updated NETBEANS-569:
--
Component/s: projects - Maven

> Sources node in project properties do not reflect source/binary specified in 
> POM
> 
>
> Key: NETBEANS-569
> URL: https://issues.apache.org/jira/browse/NETBEANS-569
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 9.0
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-linux-386-on-20180402)
> Java: 10; Java HotSpot(TM) 64-Bit Server VM 10+46
> Runtime: Java(TM) SE Runtime Environment 10+46
> System: Linux version 4.15.14 running on amd64; UTF-8; en_US (nb)
> User directory: /home/alied/.netbeans/beta
> Cache directory: /home/alied/.cache/netbeans/beta
>Reporter: Alied Pérez Martínez
>Priority: Major
>  Labels: maven
> Attachments: image-2018-04-02-16-15-47-554.png, pom.xml
>
>
> The Sources node in project properties states source/binary format as 1.3 
> while the POM says 10:
> !image-2018-04-02-16-15-47-554.png!
> POM section (full POM here: [^pom.xml]):
> {code:xml}
> 
> UTF-8
> 10
> 10
> 
> {code}
> This version was automatically set when the project was created.



--
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-568) New Archetype wizard Test Case fails to create project

2018-04-02 Thread JIRA

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

Alied Pérez Martínez updated NETBEANS-568:
--
Environment: 
Product Version: Apache NetBeans IDE Dev (Build 
incubator-netbeans-linux-386-on-20180402)
Java: 10; Java HotSpot(TM) 64-Bit Server VM 10+46
Runtime: Java(TM) SE Runtime Environment 10+46
System: Linux version 4.15.14 running on amd64; UTF-8; en_US (nb)
User directory: /home/alied/.netbeans/beta
Cache directory: /home/alied/.cache/netbeans/beta
Description: 
The test case "New Archetype wizard" fails to create the requested project

build log:
{noformat}
cd /home/alied/NetBeansProjects/netcat90; 
JAVA_HOME=/home/alied/Downloads/jdk-10 
/home/alied/Downloads/netbeans/java/maven/bin/mvn 
-DarchetypeGroupId=org.jvnet.hudson.tools 
-DarchetypeArtifactId=maven-hpi-plugin -DarchetypeVersion=3.0.1 
-DarchetypeRepository=https://repo.maven.apache.org/maven2/ 
-DgroupId=com.mycompany -DartifactId=MvnSampleProject -Dversion=1.0-SNAPSHOT 
-Dpackage=com.mycompany.mvnsampleproject 
-Dbasedir=/home/alied/NetBeansProjects/netcat90 -Darchetype.interactive=false 
--batch-mode archetype:generate
Scanning for projects...


Building Maven Stub Project (No POM) 1


>>> maven-archetype-plugin:2.3:generate (default-cli) > generate-sources @ 
>>> standalone-pom >>>

<<< maven-archetype-plugin:2.3:generate (default-cli) < generate-sources @ 
standalone-pom <<<

--- maven-archetype-plugin:2.3:generate (default-cli) @ standalone-pom ---
Generating project in Batch mode
Archetype defined by properties

Using following parameters for creating project from Old (1.x) Archetype: 
maven-hpi-plugin:3.0.1

Parameter: basedir, Value: /home/alied/NetBeansProjects/netcat90
Parameter: package, Value: com.mycompany.mvnsampleproject
Parameter: groupId, Value: com.mycompany
Parameter: artifactId, Value: MvnSampleProject
Parameter: packageName, Value: com.mycompany.mvnsampleproject
Parameter: version, Value: 1.0-SNAPSHOT

BUILD FAILURE

Total time: 1.011 s
Finished at: 2018-04-02T15:34:28-03:00
Final Memory: 12M/54M

Failed to execute goal 
org.apache.maven.plugins:maven-archetype-plugin:2.3:generate (default-cli) on 
project standalone-pom: Directory MvnSampleProject already exists - please run 
from a clean directory -> [Help 1]

To see the full stack trace of the errors, re-run Maven with the -e switch.
Re-run Maven using the -X switch to enable full debug logging.

For more information about the errors and possible solutions, please read the 
following articles:
[Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
{noformat}

No files are created inside the project directory:
{noformat}
alied@development:~/NetBeansProjects/netcat90/MvnSampleProject$ ls -la
total 8
drwxr-xr-x 2 alied alied 4096 Apr  2 15:34 .
drwxr-xr-x 3 alied alied 4096 Apr  2 15:34 ..
{noformat}

  was:
The test case "New Archetype wizard" fails to create the requested project

build log:
{noformat}
cd /home/alied/NetBeansProjects/netcat90; 
JAVA_HOME=/home/alied/Downloads/jdk-10 
/home/alied/Downloads/netbeans/java/maven/bin/mvn 
-DarchetypeGroupId=org.jvnet.hudson.tools 
-DarchetypeArtifactId=maven-hpi-plugin -DarchetypeVersion=3.0.1 
-DarchetypeRepository=https://repo.maven.apache.org/maven2/ 
-DgroupId=com.mycompany -DartifactId=MvnSampleProject -Dversion=1.0-SNAPSHOT 
-Dpackage=com.mycompany.mvnsampleproject 
-Dbasedir=/home/alied/NetBeansProjects/netcat90 -Darchetype.interactive=false 
--batch-mode archetype:generate
Scanning for projects...


Building Maven Stub Project (No POM) 1


>>> maven-archetype-plugin:2.3:generate (default-cli) > generate-sources @ 
>>> standalone-pom >>>

<<< maven-archetype-plugin:2.3:generate (default-cli) < generate-sources @ 
standalone-pom <<<

--- maven-archetype-plugin:2.3:generate (default-cli) @ standalone-pom ---
Generating project in Batch mode
Archetype defined by properties
-

[jira] [Updated] (NETBEANS-568) New Archetype wizard Test Case fails to create project

2018-04-02 Thread JIRA

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

Alied Pérez Martínez updated NETBEANS-568:
--
Labels: maven  (was: )

> New Archetype wizard Test Case fails to create project
> --
>
> Key: NETBEANS-568
> URL: https://issues.apache.org/jira/browse/NETBEANS-568
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 9.0
>Reporter: Alied Pérez Martínez
>Priority: Blocker
>  Labels: maven
>
> The test case "New Archetype wizard" fails to create the requested project
> build log:
> {noformat}
> cd /home/alied/NetBeansProjects/netcat90; 
> JAVA_HOME=/home/alied/Downloads/jdk-10 
> /home/alied/Downloads/netbeans/java/maven/bin/mvn 
> -DarchetypeGroupId=org.jvnet.hudson.tools 
> -DarchetypeArtifactId=maven-hpi-plugin -DarchetypeVersion=3.0.1 
> -DarchetypeRepository=https://repo.maven.apache.org/maven2/ 
> -DgroupId=com.mycompany -DartifactId=MvnSampleProject -Dversion=1.0-SNAPSHOT 
> -Dpackage=com.mycompany.mvnsampleproject 
> -Dbasedir=/home/alied/NetBeansProjects/netcat90 -Darchetype.interactive=false 
> --batch-mode archetype:generate
> Scanning for projects...
> 
> 
> Building Maven Stub Project (No POM) 1
> 
> >>> maven-archetype-plugin:2.3:generate (default-cli) > generate-sources @ 
> >>> standalone-pom >>>
> <<< maven-archetype-plugin:2.3:generate (default-cli) < generate-sources @ 
> standalone-pom <<<
> --- maven-archetype-plugin:2.3:generate (default-cli) @ standalone-pom ---
> Generating project in Batch mode
> Archetype defined by properties
> 
> Using following parameters for creating project from Old (1.x) Archetype: 
> maven-hpi-plugin:3.0.1
> 
> Parameter: basedir, Value: /home/alied/NetBeansProjects/netcat90
> Parameter: package, Value: com.mycompany.mvnsampleproject
> Parameter: groupId, Value: com.mycompany
> Parameter: artifactId, Value: MvnSampleProject
> Parameter: packageName, Value: com.mycompany.mvnsampleproject
> Parameter: version, Value: 1.0-SNAPSHOT
> 
> BUILD FAILURE
> 
> Total time: 1.011 s
> Finished at: 2018-04-02T15:34:28-03:00
> Final Memory: 12M/54M
> 
> Failed to execute goal 
> org.apache.maven.plugins:maven-archetype-plugin:2.3:generate (default-cli) on 
> project standalone-pom: Directory MvnSampleProject already exists - please 
> run from a clean directory -> [Help 1]
> To see the full stack trace of the errors, re-run Maven with the -e switch.
> Re-run Maven using the -X switch to enable full debug logging.
> For more information about the errors and possible solutions, please read the 
> following articles:
> [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
> {noformat}
> No files are created inside the project directory:
> {noformat}
> alied@development:~/NetBeansProjects/netcat90/MvnSampleProject$ ls -la
> total 8
> drwxr-xr-x 2 alied alied 4096 Apr  2 15:34 .
> drwxr-xr-x 3 alied alied 4096 Apr  2 15:34 ..
> {noformat}
> Build info:
> {noformat}
> Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-linux-386-on-20180402)
> Java: 10; Java HotSpot(TM) 64-Bit Server VM 10+46
> Runtime: Java(TM) SE Runtime Environment 10+46
> System: Linux version 4.15.14 running on amd64; UTF-8; en_US (nb)
> User directory: /home/alied/.netbeans/beta
> Cache directory: /home/alied/.cache/netbeans/beta
> {noformat}



--
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-568) New Archetype wizard Test Case fails to create project

2018-04-02 Thread JIRA

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

Alied Pérez Martínez updated NETBEANS-568:
--
Component/s: projects - Maven

> New Archetype wizard Test Case fails to create project
> --
>
> Key: NETBEANS-568
> URL: https://issues.apache.org/jira/browse/NETBEANS-568
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 9.0
>Reporter: Alied Pérez Martínez
>Priority: Blocker
>
> The test case "New Archetype wizard" fails to create the requested project
> build log:
> {noformat}
> cd /home/alied/NetBeansProjects/netcat90; 
> JAVA_HOME=/home/alied/Downloads/jdk-10 
> /home/alied/Downloads/netbeans/java/maven/bin/mvn 
> -DarchetypeGroupId=org.jvnet.hudson.tools 
> -DarchetypeArtifactId=maven-hpi-plugin -DarchetypeVersion=3.0.1 
> -DarchetypeRepository=https://repo.maven.apache.org/maven2/ 
> -DgroupId=com.mycompany -DartifactId=MvnSampleProject -Dversion=1.0-SNAPSHOT 
> -Dpackage=com.mycompany.mvnsampleproject 
> -Dbasedir=/home/alied/NetBeansProjects/netcat90 -Darchetype.interactive=false 
> --batch-mode archetype:generate
> Scanning for projects...
> 
> 
> Building Maven Stub Project (No POM) 1
> 
> >>> maven-archetype-plugin:2.3:generate (default-cli) > generate-sources @ 
> >>> standalone-pom >>>
> <<< maven-archetype-plugin:2.3:generate (default-cli) < generate-sources @ 
> standalone-pom <<<
> --- maven-archetype-plugin:2.3:generate (default-cli) @ standalone-pom ---
> Generating project in Batch mode
> Archetype defined by properties
> 
> Using following parameters for creating project from Old (1.x) Archetype: 
> maven-hpi-plugin:3.0.1
> 
> Parameter: basedir, Value: /home/alied/NetBeansProjects/netcat90
> Parameter: package, Value: com.mycompany.mvnsampleproject
> Parameter: groupId, Value: com.mycompany
> Parameter: artifactId, Value: MvnSampleProject
> Parameter: packageName, Value: com.mycompany.mvnsampleproject
> Parameter: version, Value: 1.0-SNAPSHOT
> 
> BUILD FAILURE
> 
> Total time: 1.011 s
> Finished at: 2018-04-02T15:34:28-03:00
> Final Memory: 12M/54M
> 
> Failed to execute goal 
> org.apache.maven.plugins:maven-archetype-plugin:2.3:generate (default-cli) on 
> project standalone-pom: Directory MvnSampleProject already exists - please 
> run from a clean directory -> [Help 1]
> To see the full stack trace of the errors, re-run Maven with the -e switch.
> Re-run Maven using the -X switch to enable full debug logging.
> For more information about the errors and possible solutions, please read the 
> following articles:
> [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
> {noformat}
> No files are created inside the project directory:
> {noformat}
> alied@development:~/NetBeansProjects/netcat90/MvnSampleProject$ ls -la
> total 8
> drwxr-xr-x 2 alied alied 4096 Apr  2 15:34 .
> drwxr-xr-x 3 alied alied 4096 Apr  2 15:34 ..
> {noformat}
> Build info:
> {noformat}
> Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-linux-386-on-20180402)
> Java: 10; Java HotSpot(TM) 64-Bit Server VM 10+46
> Runtime: Java(TM) SE Runtime Environment 10+46
> System: Linux version 4.15.14 running on amd64; UTF-8; en_US (nb)
> User directory: /home/alied/.netbeans/beta
> Cache directory: /home/alied/.cache/netbeans/beta
> {noformat}



--
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-568) New Archetype wizard Test Case fails to create project

2018-04-02 Thread JIRA

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

Alied Pérez Martínez updated NETBEANS-568:
--
Priority: Blocker  (was: Major)

> New Archetype wizard Test Case fails to create project
> --
>
> Key: NETBEANS-568
> URL: https://issues.apache.org/jira/browse/NETBEANS-568
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 9.0
>Reporter: Alied Pérez Martínez
>Priority: Blocker
>
> The test case "New Archetype wizard" fails to create the requested project
> build log:
> {noformat}
> cd /home/alied/NetBeansProjects/netcat90; 
> JAVA_HOME=/home/alied/Downloads/jdk-10 
> /home/alied/Downloads/netbeans/java/maven/bin/mvn 
> -DarchetypeGroupId=org.jvnet.hudson.tools 
> -DarchetypeArtifactId=maven-hpi-plugin -DarchetypeVersion=3.0.1 
> -DarchetypeRepository=https://repo.maven.apache.org/maven2/ 
> -DgroupId=com.mycompany -DartifactId=MvnSampleProject -Dversion=1.0-SNAPSHOT 
> -Dpackage=com.mycompany.mvnsampleproject 
> -Dbasedir=/home/alied/NetBeansProjects/netcat90 -Darchetype.interactive=false 
> --batch-mode archetype:generate
> Scanning for projects...
> 
> 
> Building Maven Stub Project (No POM) 1
> 
> >>> maven-archetype-plugin:2.3:generate (default-cli) > generate-sources @ 
> >>> standalone-pom >>>
> <<< maven-archetype-plugin:2.3:generate (default-cli) < generate-sources @ 
> standalone-pom <<<
> --- maven-archetype-plugin:2.3:generate (default-cli) @ standalone-pom ---
> Generating project in Batch mode
> Archetype defined by properties
> 
> Using following parameters for creating project from Old (1.x) Archetype: 
> maven-hpi-plugin:3.0.1
> 
> Parameter: basedir, Value: /home/alied/NetBeansProjects/netcat90
> Parameter: package, Value: com.mycompany.mvnsampleproject
> Parameter: groupId, Value: com.mycompany
> Parameter: artifactId, Value: MvnSampleProject
> Parameter: packageName, Value: com.mycompany.mvnsampleproject
> Parameter: version, Value: 1.0-SNAPSHOT
> 
> BUILD FAILURE
> 
> Total time: 1.011 s
> Finished at: 2018-04-02T15:34:28-03:00
> Final Memory: 12M/54M
> 
> Failed to execute goal 
> org.apache.maven.plugins:maven-archetype-plugin:2.3:generate (default-cli) on 
> project standalone-pom: Directory MvnSampleProject already exists - please 
> run from a clean directory -> [Help 1]
> To see the full stack trace of the errors, re-run Maven with the -e switch.
> Re-run Maven using the -X switch to enable full debug logging.
> For more information about the errors and possible solutions, please read the 
> following articles:
> [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
> {noformat}
> No files are created inside the project directory:
> {noformat}
> alied@development:~/NetBeansProjects/netcat90/MvnSampleProject$ ls -la
> total 8
> drwxr-xr-x 2 alied alied 4096 Apr  2 15:34 .
> drwxr-xr-x 3 alied alied 4096 Apr  2 15:34 ..
> {noformat}
> Build info:
> {noformat}
> Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-linux-386-on-20180402)
> Java: 10; Java HotSpot(TM) 64-Bit Server VM 10+46
> Runtime: Java(TM) SE Runtime Environment 10+46
> System: Linux version 4.15.14 running on amd64; UTF-8; en_US (nb)
> User directory: /home/alied/.netbeans/beta
> Cache directory: /home/alied/.cache/netbeans/beta
> {noformat}



--
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-574) Wrong Integration Test default when creating Test cases

2018-04-02 Thread Ross Lamont (JIRA)
Ross Lamont created NETBEANS-574:


 Summary: Wrong Integration Test default when creating Test cases
 Key: NETBEANS-574
 URL: https://issues.apache.org/jira/browse/NETBEANS-574
 Project: NetBeans
  Issue Type: Bug
  Components: java - JUnit
Affects Versions: 9.0
Reporter: Ross Lamont
 Fix For: 9.0


Steps to create:
 * Create a java class with main function
 * Bring up pop-up menu for that class
 * Choose Tools->Create/Update tests

Expected results:
 * The Integration Tests checkbox should always be unchecked (initially)

Actual results
 * The first time I tried it, the Integration Tests checkbox was checked.
 * Subsequent attempts depend on the previous invocation, ie the checkbox is 
sticky to how you last used it.  Maybe that is the desired behaviour but it 
seems odd.



--
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-573) Cannot remove relocated dependency

2018-04-02 Thread JIRA

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

Alied Pérez Martínez commented on NETBEANS-573:
---

ide log:  [^ide.log] 
sample project with issue reproducible:  [^QuickstartPrj.zip] 

> Cannot remove relocated dependency
> --
>
> Key: NETBEANS-573
> URL: https://issues.apache.org/jira/browse/NETBEANS-573
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 9.0
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-linux-386-on-20180402)
> Java: 10; Java HotSpot(TM) 64-Bit Server VM 10+46
> Runtime: Java(TM) SE Runtime Environment 10+46
> System: Linux version 4.15.14 running on amd64; UTF-8; en_US (nb)
> User directory: /home/alied/.netbeans/beta
> Cache directory: /home/alied/.cache/netbeans/beta
>Reporter: Alied Pérez Martínez
>Priority: Major
> Attachments: QuickstartPrj.zip, ide.log
>
>
> Steps to reproduce;
>  * Add a relocated dependency, such as:
> {code:xml}
>     
>     jfreechart
>     jfreechart
>     1.0.0
>     
> {code}
> * Click on the Library node under Dependencies node in projects view and 
> invoke popup menu.
> * Select Remove Dependency
> *Expected:* The dependency should be removed
> *Actual:* A message in the status bar states: "1 dependencies declared in 
> parent project(s) were not removed." and the dependency is not removed from 
> the project.
> Probably related to https://netbeans.org/bugzilla/show_bug.cgi?id=253929



--
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-572) non existing dependencies are not shown under the Dependencies node

2018-04-02 Thread JIRA
Alied Pérez Martínez created NETBEANS-572:
-

 Summary: non existing dependencies are not shown under the 
Dependencies node
 Key: NETBEANS-572
 URL: https://issues.apache.org/jira/browse/NETBEANS-572
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 9.0
 Environment: Product Version: Apache NetBeans IDE Dev (Build 
incubator-netbeans-linux-386-on-20180402)
Java: 10; Java HotSpot(TM) 64-Bit Server VM 10+46
Runtime: Java(TM) SE Runtime Environment 10+46
System: Linux version 4.15.14 running on amd64; UTF-8; en_US (nb)
User directory: /home/alied/.netbeans/beta
Cache directory: /home/alied/.cache/netbeans/beta
Reporter: Alied Pérez Martínez
 Attachments: image-2018-04-02-18-50-59-832.png, 
image-2018-04-02-18-52-29-308.png

While testing Manually Install Artifact Test Case I added a non-existing 
dependency to the POM in order to manually add an artifact:
{code:xml}

org-apache-batik
parser
1.7

{code}
*Expected:* A new node for the non-existing dependency should appear under the 
Dependencies node with an overlaid warning sign as Netbeans 8.2:

!image-2018-04-02-18-52-29-308.png!

 *Actual:* The newly-added dependency does not appear under the Dependencies 
node:

!image-2018-04-02-18-50-59-832.png!



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

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

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



[jira] [Commented] (NETBEANS-522) Jenkins task to publish netbeans.apache.org website

2018-04-02 Thread Antonio Vieiro (JIRA)

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

Antonio Vieiro commented on NETBEANS-522:
-

It seems the webhook that infra added to github doesn't work properly from 
gitbox.

We can either ask infra to add a webhook at gitbox or add two repos (master 
from github and asf-site from gitbox) and build from the first and merge into 
the second.

> Jenkins task to publish netbeans.apache.org website
> ---
>
> Key: NETBEANS-522
> URL: https://issues.apache.org/jira/browse/NETBEANS-522
> Project: NetBeans
>  Issue Type: Task
>  Components: website
>Reporter: Antonio Vieiro
>Assignee: Antonio Vieiro
>Priority: Major
>  Labels: jenkins, website
>
> Set up a jenkins task to update the https://netbeans.apache.org website
> See https://issues.apache.org/jira/browse/INFRA-16157 for the original 
> request to INFRA.



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

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

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



[incubator-netbeans-website] branch asf-site updated: Automate Site Publish by Jenkins

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

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


The following commit(s) were added to refs/heads/asf-site by this push:
 new 20c7f83  Automate Site Publish by Jenkins
20c7f83 is described below

commit 20c7f83a53bc6d51704173725bd3a28dc4700296
Author: jenkins 
AuthorDate: Mon Apr 2 21:14:23 2018 +

Automate Site Publish by Jenkins
---
 content/community/events.html | 6 --
 1 file changed, 6 deletions(-)

diff --git a/content/community/events.html b/content/community/events.html
index d52c2a7..e19c4d3 100644
--- a/content/community/events.html
+++ b/content/community/events.html
@@ -91,12 +91,6 @@
 Apache NetBeans Events
 
 
-For events held by Apache projects, clearance needs to be obtained. 
Clearance is granted by VP, Brand (Shane Curcuru) usually in response to an 
email to mailto:tradema...@apache.org;>tradema...@apache.org with 
a description of what is being requested. This is a private email list. The 
request should reference any discussion that has happened on dev and private 
lists to give complete context.
-
-
-For a list of events such as the continually ongoing NetBeans Days (to be 
renamed to Apache NetBeans Days), a blanket request is fine assuming that the 
(P)PMC has been involved, i.e., the committers on the NetBeans Apache dev 
mailing list. A description of the events and the involvement of the (P)PMC is 
what VP, Brand will use to either approve or ask more questions. Casual 
get-togethers with no commercial sponsors are easier to get approval for, which 
is exactly what the Apache NetBe [...]
-
-
 Apache NetBeans Days are a class of events which happen regularly, with a 
clear definition of what makes an event be part of that class:
 
 

-- 
To stop receiving notification emails like this one, please contact
git-site-r...@apache.org.

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

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



[incubator-netbeans] branch master updated: [NETBEANS-536] Fixing reformatter to handle fors that don't have condition. (#472)

2018-04-02 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new e687856  [NETBEANS-536] Fixing reformatter to handle fors that don't 
have condition. (#472)
e687856 is described below

commit e68785656df67eb6cdd1dedd70ff9613e21fdfb9
Author: Jan Lahoda 
AuthorDate: Mon Apr 2 23:12:38 2018 +0200

[NETBEANS-536] Fixing reformatter to handle fors that don't have condition. 
(#472)
---
 .../modules/java/source/save/Reformatter.java  |  2 +-
 .../modules/java/source/save/FormatingTest.java| 26 ++
 2 files changed, 27 insertions(+), 1 deletion(-)

diff --git 
a/java.source.base/src/org/netbeans/modules/java/source/save/Reformatter.java 
b/java.source.base/src/org/netbeans/modules/java/source/save/Reformatter.java
index 433493d..20af393 100644
--- 
a/java.source.base/src/org/netbeans/modules/java/source/save/Reformatter.java
+++ 
b/java.source.base/src/org/netbeans/modules/java/source/save/Reformatter.java
@@ -2509,7 +2509,7 @@ public class Reformatter implements ReformatTask {
 lastIndent = indent;
 CodeStyle.BracesGenerationStyle redundantForBraces = 
cs.redundantForBraces();
 int eoln = findNewlineAfterStatement(node);
-if (redundantForBraces == CodeStyle.BracesGenerationStyle.GENERATE 
&& (startOffset > sp.getStartPosition(root, node) || endOffset < eoln || 
node.getCondition().getKind() == Tree.Kind.ERRONEOUS)) {
+if (redundantForBraces == CodeStyle.BracesGenerationStyle.GENERATE 
&& (startOffset > sp.getStartPosition(root, node) || endOffset < eoln || 
(node.getCondition() != null && node.getCondition().getKind() == 
Tree.Kind.ERRONEOUS))) {
 redundantForBraces = 
CodeStyle.BracesGenerationStyle.LEAVE_ALONE;
 }
 wrapStatement(cs.wrapForStatement(), redundantForBraces, 
cs.spaceBeforeForLeftBrace() ? 1 : 0, node.getStatement());
diff --git 
a/java.source.base/test/unit/src/org/netbeans/modules/java/source/save/FormatingTest.java
 
b/java.source.base/test/unit/src/org/netbeans/modules/java/source/save/FormatingTest.java
index d316fe7..59e8969 100644
--- 
a/java.source.base/test/unit/src/org/netbeans/modules/java/source/save/FormatingTest.java
+++ 
b/java.source.base/test/unit/src/org/netbeans/modules/java/source/save/FormatingTest.java
@@ -4431,6 +4431,32 @@ public class FormatingTest extends NbTestCase {
 reformat(doc, content, golden);
 }
 
+public void testForNoCondition() throws Exception {
+testFile = new File(getWorkDir(), "Test.java");
+TestUtilities.copyStringToFile(testFile, "");
+FileObject testSourceFO = FileUtil.toFileObject(testFile);
+DataObject testSourceDO = DataObject.find(testSourceFO);
+EditorCookie ec = 
(EditorCookie)testSourceDO.getCookie(EditorCookie.class);
+final Document doc = ec.openDocument();
+doc.putProperty(Language.class, JavaTokenId.language());
+String content =
+"package hierbas.del.litoral;\n\n"
++ "public class Test {\n\n"
++ "public static void main(String[] args) {\n"
++ "for (;;);\n"
++ "}\n"
++ "}\n";
+
+String golden =
+"package hierbas.del.litoral;\n\n"
++ "public class Test {\n\n"
++ "public static void main(String[] args) {\n"
++ "for (;;);\n"
++ "}\n"
++ "}\n";
+reformat(doc, content, golden);
+}
+
 private void reformat(Document doc, String content, String golden) throws 
Exception {
 reformat(doc, content, golden, 0, content.length());
 }

-- 
To stop receiving notification emails like this one, please contact
geert...@apache.org.

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

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



[incubator-netbeans] branch master updated: [NETBEANS-539] Attempting to add support for JDK 10 and beyond to profiler, by using codepaths for JDK 9. (#473)

2018-04-02 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 21786f9  [NETBEANS-539] Attempting to add support for JDK 10 and 
beyond to profiler, by using codepaths for JDK 9. (#473)
21786f9 is described below

commit 21786f9c6485b9a1fe175758e618f4e7c1d077a3
Author: Jan Lahoda 
AuthorDate: Mon Apr 2 23:11:42 2018 +0200

[NETBEANS-539] Attempting to add support for JDK 10 and beyond to profiler, 
by using codepaths for JDK 9. (#473)
---
 .../profiler/common/integration/Bundle.properties   |  2 ++
 .../common/integration/IntegrationUtils.java| 14 +++---
 .../org/netbeans/lib/profiler/ProfilerClient.java   |  2 +-
 .../org/netbeans/lib/profiler/TargetAppRunner.java  | 11 +++
 .../lib/profiler/global/CalibrationDataFileIO.java  |  3 ++-
 .../lib/profiler/global/CommonConstants.java|  2 ++
 .../org/netbeans/lib/profiler/global/Platform.java  | 21 +
 .../lib/profiler/server/ProfilerInterface.java  |  4 ++--
 .../lib/profiler/server/ProfilerServer.java |  2 +-
 .../org/netbeans/lib/profiler/utils/MiscUtils.java  | 15 +++
 .../tests/jfluid/CommonProfilerTestCase.java|  8 
 .../netbeans/modules/profiler/api/JavaPlatform.java |  7 +++
 .../attach/providers/TargetPlatformEnum.java| 11 +++
 .../attach/spi/AbstractRemotePackExporter.java  |  1 +
 .../profiler/nbimpl/actions/ProfilerLauncher.java   |  3 +++
 .../netbeans/modules/profiler/utils/IDEUtils.java   |  4 
 16 files changed, 90 insertions(+), 20 deletions(-)

diff --git 
a/lib.profiler.common/src/org/netbeans/lib/profiler/common/integration/Bundle.properties
 
b/lib.profiler.common/src/org/netbeans/lib/profiler/common/integration/Bundle.properties
index f43d1f5..149c3c9 100644
--- 
a/lib.profiler.common/src/org/netbeans/lib/profiler/common/integration/Bundle.properties
+++ 
b/lib.profiler.common/src/org/netbeans/lib/profiler/common/integration/Bundle.properties
@@ -21,6 +21,7 @@ IntegrationUtils_PlatformJava60=Java SE 6.0
 IntegrationUtils_PlatformJava70=Java SE 7.0
 IntegrationUtils_PlatformJava80=Java SE 8.0
 IntegrationUtils_PlatformJava90=Java SE 9.0
+IntegrationUtils_PlatformJava110=Java SE 10.0 or newer
 IntegrationUtils_PlatformJavaCvm=CVM
 IntegrationUtils_PlatformWindowsOs=Windows, 32bit JVM
 IntegrationUtils_PlatformWindowsAmd64Os=Windows, 64bit JVM
@@ -54,6 +55,7 @@ IntegrationUtils_Jdk60Name=Java SE 6 (JRE or JDK)
 IntegrationUtils_Jdk70Name=Java SE 7 (JRE or JDK)
 IntegrationUtils_Jdk80Name=Java SE 8 (JRE or JDK)
 IntegrationUtils_Jdk90Name=Java SE 9 (JRE or JDK)
+IntegrationUtils_Jdk110Name=Java SE 10 or newer (JRE or JDK)
 IntegrationUtils_JdkCvmName=CVM
 IntegrationUtils_RemoteString=remote
 # HTML-formatted
diff --git 
a/lib.profiler.common/src/org/netbeans/lib/profiler/common/integration/IntegrationUtils.java
 
b/lib.profiler.common/src/org/netbeans/lib/profiler/common/integration/IntegrationUtils.java
index 42ac042..358c586 100644
--- 
a/lib.profiler.common/src/org/netbeans/lib/profiler/common/integration/IntegrationUtils.java
+++ 
b/lib.profiler.common/src/org/netbeans/lib/profiler/common/integration/IntegrationUtils.java
@@ -48,6 +48,7 @@ public class IntegrationUtils {
 public static final String PLATFORM_JAVA_70 = 
messages.getString("IntegrationUtils_PlatformJava70"); // NOI18N
 public static final String PLATFORM_JAVA_80 = 
messages.getString("IntegrationUtils_PlatformJava80"); // NOI18N
 public static final String PLATFORM_JAVA_90 = 
messages.getString("IntegrationUtils_PlatformJava90"); // NOI18N
+public static final String PLATFORM_JAVA_110_BEYOND = 
messages.getString("IntegrationUtils_PlatformJava110"); // NOI18N
 public static final String PLATFORM_JAVA_CVM = 
messages.getString("IntegrationUtils_PlatformJavaCvm"); // NOI18N
 public static final String PLATFORM_WINDOWS_OS = 
messages.getString("IntegrationUtils_PlatformWindowsOs"); // NOI18N
 public static final String PLATFORM_WINDOWS_AMD64_OS = 
messages.getString("IntegrationUtils_PlatformWindowsAmd64Os"); // NOI18N
@@ -74,6 +75,7 @@ public class IntegrationUtils {
 private static final String JDK_70_NAME = 
messages.getString("IntegrationUtils_Jdk70Name"); // NOI18N
 private static final String JDK_80_NAME = 
messages.getString("IntegrationUtils_Jdk80Name"); // NOI18N
 private static final String JDK_90_NAME = 
messages.getString("IntegrationUtils_Jdk90Name"); // NOI18N
+private static final String JDK_110_BEYOND_NAME = 
messages.getString("IntegrationUtils_Jdk110Name"); // NOI18N
 private static final String JDK_CVM_NAME = 
messages.getString("IntegrationUtils_JdkCvmName"); // NOI18N
 private static final String HTML_REMOTE_STRING = "" + 

[jira] [Created] (NETBEANS-571) Exception Dialog still points to Bugzilla

2018-04-02 Thread John McDonnell (JIRA)
John McDonnell created NETBEANS-571:
---

 Summary: Exception Dialog still points to Bugzilla
 Key: NETBEANS-571
 URL: https://issues.apache.org/jira/browse/NETBEANS-571
 Project: NetBeans
  Issue Type: Bug
  Components: ide - UI
Reporter: John McDonnell
Assignee: John McDonnell
 Attachments: Screen Shot 2018-04-02 at 21.47.16.png

When an unexpected exception is thrown in the IDE, like a NPE, the displayed 
dialog shows an out of date URL for users to file issues against.

See attached image.

Expected Result:
The URL in the dialog should point to: 
[http://issues.apache.org/jira/projects/NETBEANS/issues|https://issues.apache.org/jira/projects/NETBEANS/issues]

Actual Result:

The URL in the dialog points to [http://www.netbeans.org/community/issues.html] 



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

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

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



[incubator-netbeans-website] branch master updated (60c1c91 -> 74e945a)

2018-04-02 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

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


from 60c1c91  Merge pull request #23 from apache/john-committer
 add f359bc0  Update events.asciidoc
 new 74e945a  Merge pull request #24 from apache/clean-up-events-page

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


Summary of changes:
 netbeans.apache.org/src/content/community/events.asciidoc | 4 
 1 file changed, 4 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
geert...@apache.org.

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

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



[incubator-netbeans-website] 01/01: Merge pull request #24 from apache/clean-up-events-page

2018-04-02 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

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

commit 74e945a4a7f050aab5fa4ae1c92c248047a5267a
Merge: 60c1c91 f359bc0
Author: Geertjan Wielenga 
AuthorDate: Mon Apr 2 22:37:45 2018 +0200

Merge pull request #24 from apache/clean-up-events-page

Update events.asciidoc

 netbeans.apache.org/src/content/community/events.asciidoc | 4 
 1 file changed, 4 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
geert...@apache.org.

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

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



[incubator-netbeans-website] branch clean-up-events-page created (now f359bc0)

2018-04-02 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

geertjan pushed a change to branch clean-up-events-page
in repository 
https://gitbox.apache.org/repos/asf/incubator-netbeans-website.git.


  at f359bc0  Update events.asciidoc

This branch includes the following new commits:

 new f359bc0  Update events.asciidoc

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


-- 
To stop receiving notification emails like this one, please contact
geert...@apache.org.

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

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



[incubator-netbeans-website] 01/01: Update events.asciidoc

2018-04-02 Thread geertjan
This is an automated email from the ASF dual-hosted git repository.

geertjan pushed a commit to branch clean-up-events-page
in repository https://gitbox.apache.org/repos/asf/incubator-netbeans-website.git

commit f359bc01588fa433f409862abe9c9efc59ab624d
Author: Geertjan Wielenga 
AuthorDate: Mon Apr 2 22:36:56 2018 +0200

Update events.asciidoc
---
 netbeans.apache.org/src/content/community/events.asciidoc | 4 
 1 file changed, 4 deletions(-)

diff --git a/netbeans.apache.org/src/content/community/events.asciidoc 
b/netbeans.apache.org/src/content/community/events.asciidoc
index d9a91e0..1368757 100644
--- a/netbeans.apache.org/src/content/community/events.asciidoc
+++ b/netbeans.apache.org/src/content/community/events.asciidoc
@@ -27,10 +27,6 @@
 
 == Apache NetBeans Events
 
-For events held by Apache projects, clearance needs to be obtained. Clearance 
is granted by VP, Brand (Shane Curcuru) usually in response to an email to 
tradema...@apache.org with a description of what is being requested. This is a 
private email list. The request should reference any discussion that has 
happened on dev and private lists to give complete context. 
-
-For a list of events such as the continually ongoing NetBeans Days (to be 
renamed to Apache NetBeans Days), a blanket request is fine assuming that the 
(P)PMC has been involved, i.e., the committers on the NetBeans Apache dev 
mailing list. A description of the events and the involvement of the (P)PMC is 
what VP, Brand will use to either approve or ask more questions. Casual 
get-togethers with no commercial sponsors are easier to get approval for, which 
is exactly what the Apache NetBeans [...]
-
 Apache NetBeans Days are a class of events which happen regularly, with a 
clear definition of what makes an event be part of that class:
 
 1. Have its opening keynote focus on the current state and roadmap of 
NetBeans. 

-- 
To stop receiving notification emails like this one, please contact
geert...@apache.org.

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

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



[jira] [Created] (NETBEANS-570) Create file other than source should do it in resources not in sources.

2018-04-02 Thread JIRA
Alied Pérez Martínez created NETBEANS-570:
-

 Summary: Create file other than source should do it in resources 
not in sources.
 Key: NETBEANS-570
 URL: https://issues.apache.org/jira/browse/NETBEANS-570
 Project: NetBeans
  Issue Type: Bug
  Components: projects - Maven
Affects Versions: 9.0
 Environment: Product Version: Apache NetBeans IDE Dev (Build 
incubator-netbeans-linux-386-on-20180402)
Java: 10; Java HotSpot(TM) 64-Bit Server VM 10+46
Runtime: Java(TM) SE Runtime Environment 10+46
System: Linux version 4.15.14 running on amd64; UTF-8; en_US (nb)
User directory: /home/alied/.netbeans/beta
Cache directory: /home/alied/.cache/netbeans/beta
Reporter: Alied Pérez Martínez


in test case Create XML document[1] a new XML document is created. Creation of 
files other than java files should go to resources ({{src/main/resources}}) 
instead of sources ({{src/main/java}}), as by Maven conventions[2]. Therefore a 
new XML file should be created in resources, not in sources.

[1] http://netbeans-vm.apache.org/synergy/client/app/#/assignment/2147/v/1
[2] 
https://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html




--
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-569) Sources node in project properties do not reflect source/binary specified in POM

2018-04-02 Thread JIRA

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

Alied Pérez Martínez updated NETBEANS-569:
--
Description: 
The Sources node in project properties states source/binary format as 1.3 while 
the POM says 10:

!image-2018-04-02-16-15-47-554.png!

POM section (full POM here: [^pom.xml]):
{code:xml}

UTF-8
10
10

{code}

This version was automatically set when the project was created.

  was:
The Sources node in project properties states source/binary format as 1.3 while 
the POM says 10:

!image-2018-04-02-16-15-47-554.png!

POM section (full POM here: ):
{code:xml}

UTF-8
10
10

{code}

This version was automatically set when the project was created.


> Sources node in project properties do not reflect source/binary specified in 
> POM
> 
>
> Key: NETBEANS-569
> URL: https://issues.apache.org/jira/browse/NETBEANS-569
> Project: NetBeans
>  Issue Type: Bug
>Affects Versions: 9.0
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-linux-386-on-20180402)
> Java: 10; Java HotSpot(TM) 64-Bit Server VM 10+46
> Runtime: Java(TM) SE Runtime Environment 10+46
> System: Linux version 4.15.14 running on amd64; UTF-8; en_US (nb)
> User directory: /home/alied/.netbeans/beta
> Cache directory: /home/alied/.cache/netbeans/beta
>Reporter: Alied Pérez Martínez
>Priority: Major
> Attachments: image-2018-04-02-16-15-47-554.png, pom.xml
>
>
> The Sources node in project properties states source/binary format as 1.3 
> while the POM says 10:
> !image-2018-04-02-16-15-47-554.png!
> POM section (full POM here: [^pom.xml]):
> {code:xml}
> 
> UTF-8
> 10
> 10
> 
> {code}
> This version was automatically set when the project was created.



--
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-569) Sources node in project properties do not reflect source/binary specified in POM

2018-04-02 Thread JIRA
Alied Pérez Martínez created NETBEANS-569:
-

 Summary: Sources node in project properties do not reflect 
source/binary specified in POM
 Key: NETBEANS-569
 URL: https://issues.apache.org/jira/browse/NETBEANS-569
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 9.0
 Environment: Product Version: Apache NetBeans IDE Dev (Build 
incubator-netbeans-linux-386-on-20180402)
Java: 10; Java HotSpot(TM) 64-Bit Server VM 10+46
Runtime: Java(TM) SE Runtime Environment 10+46
System: Linux version 4.15.14 running on amd64; UTF-8; en_US (nb)
User directory: /home/alied/.netbeans/beta
Cache directory: /home/alied/.cache/netbeans/beta
Reporter: Alied Pérez Martínez
 Attachments: image-2018-04-02-16-15-47-554.png, pom.xml

The Sources node in project properties states source/binary format as 1.3 while 
the POM says 10:

!image-2018-04-02-16-15-47-554.png!

POM section (full POM here: ):
{code:xml}

UTF-8
10
10

{code}

This version was automatically set when the project was created.



--
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-518) Create test for existing class creates uncompilable test.

2018-04-02 Thread JIRA

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

Alied Pérez Martínez edited comment on NETBEANS-518 at 4/2/18 6:53 PM:
---

seems to work for me in:
{noformat}
 Product Version: Apache NetBeans IDE Dev (Build 
incubator-netbeans-linux-386-on-20180402)
 Java: 10; Java HotSpot(TM) 64-Bit Server VM 10+46
 Runtime: Java(TM) SE Runtime Environment 10+46
 System: Linux version 4.15.14 running on amd64; UTF-8; en_US (nb)
 User directory: /home/alied/.netbeans/beta
 Cache directory: /home/alied/.cache/netbeans/beta
{noformat}

generated test file:  [^NewMainTest.java] 


was (Author: aliedperezmartinez):
seems to work for me in:
{noformat}
 Product Version: Apache NetBeans IDE Dev (Build 
incubator-netbeans-linux-386-on-20180402)
 Java: 10; Java HotSpot(TM) 64-Bit Server VM 10+46
 Runtime: Java(TM) SE Runtime Environment 10+46
 System: Linux version 4.15.14 running on amd64; UTF-8; en_US (nb)
 User directory: /home/alied/.netbeans/beta
 Cache directory: /home/alied/.cache/netbeans/beta{noformat}

> Create test for existing class creates uncompilable test. 
> --
>
> Key: NETBEANS-518
> URL: https://issues.apache.org/jira/browse/NETBEANS-518
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 9.0
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-linux-376-on-20180323)
> Java: 1.8.0_152; Java HotSpot(TM) 64-Bit Server VM 25.152-b16
> Runtime: Java(TM) SE Runtime Environment 1.8.0_152-b16
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
>Reporter: Luca Mambretti
>Priority: Minor
> Attachments: NewMainTest.java
>
>
> It seems that the old [|https://netbeans.org/bugzilla/show_bug.cgi?id=254989] 
> [*Bug 254989*|https://netbeans.org/bugzilla/show_bug.cgi?id=254989] is 
> showing up again.
>  
> Generated test cases are not compilable due to missing static imports.
>  



--
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-518) Create test for existing class creates uncompilable test.

2018-04-02 Thread JIRA

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

Alied Pérez Martínez updated NETBEANS-518:
--
Attachment: netbeans.conf

> Create test for existing class creates uncompilable test. 
> --
>
> Key: NETBEANS-518
> URL: https://issues.apache.org/jira/browse/NETBEANS-518
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 9.0
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-linux-376-on-20180323)
> Java: 1.8.0_152; Java HotSpot(TM) 64-Bit Server VM 25.152-b16
> Runtime: Java(TM) SE Runtime Environment 1.8.0_152-b16
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
>Reporter: Luca Mambretti
>Priority: Minor
>
> It seems that the old [|https://netbeans.org/bugzilla/show_bug.cgi?id=254989] 
> [*Bug 254989*|https://netbeans.org/bugzilla/show_bug.cgi?id=254989] is 
> showing up again.
>  
> Generated test cases are not compilable due to missing static imports.
>  



--
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-518) Create test for existing class creates uncompilable test.

2018-04-02 Thread JIRA

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

Alied Pérez Martínez updated NETBEANS-518:
--
Attachment: (was: netbeans.conf)

> Create test for existing class creates uncompilable test. 
> --
>
> Key: NETBEANS-518
> URL: https://issues.apache.org/jira/browse/NETBEANS-518
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 9.0
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-linux-376-on-20180323)
> Java: 1.8.0_152; Java HotSpot(TM) 64-Bit Server VM 25.152-b16
> Runtime: Java(TM) SE Runtime Environment 1.8.0_152-b16
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
>Reporter: Luca Mambretti
>Priority: Minor
>
> It seems that the old [|https://netbeans.org/bugzilla/show_bug.cgi?id=254989] 
> [*Bug 254989*|https://netbeans.org/bugzilla/show_bug.cgi?id=254989] is 
> showing up again.
>  
> Generated test cases are not compilable due to missing static imports.
>  



--
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-518) Create test for existing class creates uncompilable test.

2018-04-02 Thread JIRA

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

Alied Pérez Martínez edited comment on NETBEANS-518 at 4/2/18 6:50 PM:
---

seems to work for me in:
{noformat}
 Product Version: Apache NetBeans IDE Dev (Build 
incubator-netbeans-linux-386-on-20180402)
 Java: 10; Java HotSpot(TM) 64-Bit Server VM 10+46
 Runtime: Java(TM) SE Runtime Environment 10+46
 System: Linux version 4.15.14 running on amd64; UTF-8; en_US (nb)
 User directory: /home/alied/.netbeans/beta
 Cache directory: /home/alied/.cache/netbeans/beta{noformat}


was (Author: aliedperezmartinez):
seems to work for me in:
Product Version: Apache NetBeans IDE Dev (Build 
incubator-netbeans-linux-386-on-20180402)
Java: 10; Java HotSpot(TM) 64-Bit Server VM 10+46
Runtime: Java(TM) SE Runtime Environment 10+46
System: Linux version 4.15.14 running on amd64; UTF-8; en_US (nb)
User directory: /home/alied/.netbeans/beta
Cache directory: /home/alied/.cache/netbeans/beta

> Create test for existing class creates uncompilable test. 
> --
>
> Key: NETBEANS-518
> URL: https://issues.apache.org/jira/browse/NETBEANS-518
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 9.0
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-linux-376-on-20180323)
> Java: 1.8.0_152; Java HotSpot(TM) 64-Bit Server VM 25.152-b16
> Runtime: Java(TM) SE Runtime Environment 1.8.0_152-b16
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
>Reporter: Luca Mambretti
>Priority: Minor
>
> It seems that the old [|https://netbeans.org/bugzilla/show_bug.cgi?id=254989] 
> [*Bug 254989*|https://netbeans.org/bugzilla/show_bug.cgi?id=254989] is 
> showing up again.
>  
> Generated test cases are not compilable due to missing static imports.
>  



--
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-518) Create test for existing class creates uncompilable test.

2018-04-02 Thread JIRA

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

Alied Pérez Martínez commented on NETBEANS-518:
---

seems to work for me in:
Product Version: Apache NetBeans IDE Dev (Build 
incubator-netbeans-linux-386-on-20180402)
Java: 10; Java HotSpot(TM) 64-Bit Server VM 10+46
Runtime: Java(TM) SE Runtime Environment 10+46
System: Linux version 4.15.14 running on amd64; UTF-8; en_US (nb)
User directory: /home/alied/.netbeans/beta
Cache directory: /home/alied/.cache/netbeans/beta

> Create test for existing class creates uncompilable test. 
> --
>
> Key: NETBEANS-518
> URL: https://issues.apache.org/jira/browse/NETBEANS-518
> Project: NetBeans
>  Issue Type: Bug
>  Components: projects - Maven
>Affects Versions: 9.0
> Environment: Product Version: Apache NetBeans IDE Dev (Build 
> incubator-netbeans-linux-376-on-20180323)
> Java: 1.8.0_152; Java HotSpot(TM) 64-Bit Server VM 25.152-b16
> Runtime: Java(TM) SE Runtime Environment 1.8.0_152-b16
> System: Windows 10 version 10.0 running on amd64; Cp1252; en_US (nb)
>Reporter: Luca Mambretti
>Priority: Minor
>
> It seems that the old [|https://netbeans.org/bugzilla/show_bug.cgi?id=254989] 
> [*Bug 254989*|https://netbeans.org/bugzilla/show_bug.cgi?id=254989] is 
> showing up again.
>  
> Generated test cases are not compilable due to missing static imports.
>  



--
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-568) New Archetype wizard Test Case fails to create project

2018-04-02 Thread JIRA
Alied Pérez Martínez created NETBEANS-568:
-

 Summary: New Archetype wizard Test Case fails to create project
 Key: NETBEANS-568
 URL: https://issues.apache.org/jira/browse/NETBEANS-568
 Project: NetBeans
  Issue Type: Bug
Affects Versions: 9.0
Reporter: Alied Pérez Martínez


The test case "New Archetype wizard" fails to create the requested project

build log:
{noformat}
cd /home/alied/NetBeansProjects/netcat90; 
JAVA_HOME=/home/alied/Downloads/jdk-10 
/home/alied/Downloads/netbeans/java/maven/bin/mvn 
-DarchetypeGroupId=org.jvnet.hudson.tools 
-DarchetypeArtifactId=maven-hpi-plugin -DarchetypeVersion=3.0.1 
-DarchetypeRepository=https://repo.maven.apache.org/maven2/ 
-DgroupId=com.mycompany -DartifactId=MvnSampleProject -Dversion=1.0-SNAPSHOT 
-Dpackage=com.mycompany.mvnsampleproject 
-Dbasedir=/home/alied/NetBeansProjects/netcat90 -Darchetype.interactive=false 
--batch-mode archetype:generate
Scanning for projects...


Building Maven Stub Project (No POM) 1


>>> maven-archetype-plugin:2.3:generate (default-cli) > generate-sources @ 
>>> standalone-pom >>>

<<< maven-archetype-plugin:2.3:generate (default-cli) < generate-sources @ 
standalone-pom <<<

--- maven-archetype-plugin:2.3:generate (default-cli) @ standalone-pom ---
Generating project in Batch mode
Archetype defined by properties

Using following parameters for creating project from Old (1.x) Archetype: 
maven-hpi-plugin:3.0.1

Parameter: basedir, Value: /home/alied/NetBeansProjects/netcat90
Parameter: package, Value: com.mycompany.mvnsampleproject
Parameter: groupId, Value: com.mycompany
Parameter: artifactId, Value: MvnSampleProject
Parameter: packageName, Value: com.mycompany.mvnsampleproject
Parameter: version, Value: 1.0-SNAPSHOT

BUILD FAILURE

Total time: 1.011 s
Finished at: 2018-04-02T15:34:28-03:00
Final Memory: 12M/54M

Failed to execute goal 
org.apache.maven.plugins:maven-archetype-plugin:2.3:generate (default-cli) on 
project standalone-pom: Directory MvnSampleProject already exists - please run 
from a clean directory -> [Help 1]

To see the full stack trace of the errors, re-run Maven with the -e switch.
Re-run Maven using the -X switch to enable full debug logging.

For more information about the errors and possible solutions, please read the 
following articles:
[Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
{noformat}

No files are created inside the project directory:
{noformat}
alied@development:~/NetBeansProjects/netcat90/MvnSampleProject$ ls -la
total 8
drwxr-xr-x 2 alied alied 4096 Apr  2 15:34 .
drwxr-xr-x 3 alied alied 4096 Apr  2 15:34 ..
{noformat}

Build info:
{noformat}
Product Version: Apache NetBeans IDE Dev (Build 
incubator-netbeans-linux-386-on-20180402)
Java: 10; Java HotSpot(TM) 64-Bit Server VM 10+46
Runtime: Java(TM) SE Runtime Environment 10+46
System: Linux version 4.15.14 running on amd64; UTF-8; en_US (nb)
User directory: /home/alied/.netbeans/beta
Cache directory: /home/alied/.cache/netbeans/beta
{noformat}



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

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

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



[incubator-netbeans-website] branch delete-unused-test-file deleted (was 6321da7)

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

vieiro pushed a change to branch delete-unused-test-file
in repository 
https://gitbox.apache.org/repos/asf/incubator-netbeans-website.git.


 was 6321da7  Delete test.md

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.

-- 
To stop receiving notification emails like this one, please contact
vie...@apache.org.

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

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



[jira] [Comment Edited] (NETBEANS-373) Netbeans sometimes freezes when showing any refactor dialog when running with jdk 1.8.0_152-b16 or later

2018-04-02 Thread Austin Stephens (JIRA)

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

Austin Stephens edited comment on NETBEANS-373 at 4/2/18 5:31 PM:
--

I have added some screen shots showing any outstanding locks on the stack. It 
looks like it is syncing on "this" and not the tree lock.

In Component:
{code:java}
    public synchronized void addContainerListener(ContainerListener l) {
{code}
In ParametersPanel (that calls show)
{code:java}
    public synchronized RefactoringSession showDialog() {
{code}
 


was (Author: sir intellegence):
I have added some screen shots showing any outstanding locks on the stack. It 
looks like it is syncing on "this" and not the tree lock.

> Netbeans sometimes freezes when showing any refactor dialog when running with 
> jdk 1.8.0_152-b16 or later
> 
>
> Key: NETBEANS-373
> URL: https://issues.apache.org/jira/browse/NETBEANS-373
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Refactoring
>Affects Versions: 8.2, 9.0
> Environment: Mac
>Reporter: Austin Stephens
>Priority: Blocker
> Attachments: Screen Shot 2018-04-02 at 11.22.11 AM.png, Screen Shot 
> 2018-04-02 at 11.23.15 AM.png, nbpresenter.diff
>
>
> Sometimes (or almost always), when you try to do some refactor action, 
> NetBeans freezes. It appears that a lock is obtained on a panel when the 
> dialog is shown, and the AppKit Thread tries to get the lock while trying to 
> add an accessible listener to it.
> AppKit Thread:
> {code:java}
> Container.addContainerListener:2142    
> Container$AccessibleAWTContainer.addPropertyChangeListener:3885    
> JComponent$AccessibleJComponent.addPropertyChangeListener:3765    
> Hidden Source Calls    
> CAccessible.addNotificationListeners:102    
> CAccessible.:84    
> CAccessible.getCAccessible:60
> {code}
> EDT Thread:
> {code:java}
> Hidden Source Calls    
> Unsafe.park    
> LockSupport.park:194    
> AbstractQueuedSynchronizer$ConditionObject.await:2062    
> EventQueue.getNextEvent:557    
> EventDispatchThread.pumpOneEventForFilters:173    
> EventDispatchThread.pumpEventsForFilter:124    
> EventDispatchThread.pumpEventsForFilter:117    
> WaitDispatchSupport$2.run:190    
> WaitDispatchSupport$4.run:235    
> WaitDispatchSupport$4.run:233    
> AccessController.doPrivileged    
> WaitDispatchSupport.enter:233    
> Dialog.show:1070    
> NbPresenter.superShow:1060    
> NbPresenter.doShow:1110    
> NbPresenter.run:1082    
> NbPresenter.run:105    
> NbMutexEventProvider$Event.doEventAccess:115    
> NbMutexEventProvider$Event.readAccess:75    
> LazyMutexImplementation.readAccess:71    
> Mutex.readAccess:193    
> NbPresenter.show:1067    
> Component.show:1669    
> Component.setVisible:1616    
> Window.setVisible:1017    
> Dialog.setVisible:1005    
> ParametersPanel.showDialog:674    
> RefactoringPanel.refresh:660    
> RefactoringPanel.:144    
> UI.openRefactoringUI:61    
> ContextAnalyzer$4.show:648    
> ContextAnalyzer$TextComponentTask.run:369    
> RefactoringActionsProvider.doFindUsages:232    
> ActionsImplementationFactory.doFindUsages:91    
> WhereUsedAction.performAction:52    
> RefactoringGlobalAction$ContextAction.actionPerformed:172    
> TopComponent.processKeyBinding:1151    
> JComponent.processKeyBindings:2963    
> JComponent.processKeyEvent:2863    
> Component.processEvent:6355    
> Container.processEvent:2259    
> Component.dispatchEventImpl:4961    
> Container.dispatchEventImpl:2317    
> Component.dispatchEvent:4793    
> KeyboardFocusManager.redispatchEvent:1955    
> DefaultKeyboardFocusManager.dispatchKeyEvent:827    
> DefaultKeyboardFocusManager.preDispatchKeyEvent:1096    
> DefaultKeyboardFocusManager.typeAheadAssertions:966    
> DefaultKeyboardFocusManager.dispatchEvent:792    
> Component.dispatchEventImpl:4842    
> Container.dispatchEventImpl:2317    
> Window.dispatchEventImpl:2758    
> Component.dispatchEvent:4793    
> EventQueue.dispatchEventImpl:766    
> EventQueue.access$500:97    
> EventQueue$3.run:717    
> EventQueue$3.run:711    
> AccessController.doPrivileged    
> ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege:89    
> ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege:99    
> EventQueue$4.run:739    
> EventQueue$4.run:737    
> AccessController.doPrivileged    
> ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege:89    
> EventQueue.dispatchEvent:736    
> TimableEventQueue.dispatchEvent:136    
> EventDispatchThread.pumpOneEventForFilters:199    
> EventDispatchThread.pumpEventsForFilter:124    
> EventDispatchThread.pumpEventsForHierarchy:113    
> EventDispatchThread.pumpEvents:109    
> 

[incubator-netbeans-website] 01/01: Merge pull request #23 from apache/john-committer

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

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

commit 60c1c91e87ecd115e15d417f3c7fbb7f36e94fa1
Merge: 7f4c8b8 21b0c0b
Author: Antonio Vieiro 
AuthorDate: Mon Apr 2 19:27:38 2018 +0200

Merge pull request #23 from apache/john-committer

Update who.asciidoc - John as committer

 netbeans.apache.org/src/content/community/who.asciidoc | 2 ++
 1 file changed, 2 insertions(+)

-- 
To stop receiving notification emails like this one, please contact
vie...@apache.org.

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

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



[incubator-netbeans-website] branch master updated (7f4c8b8 -> 60c1c91)

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

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


from 7f4c8b8  Merge pull request #22 from apache/delete-unused-test-file
 add 21b0c0b  Update who.asciidoc
 new 60c1c91  Merge pull request #23 from apache/john-committer

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


Summary of changes:
 netbeans.apache.org/src/content/community/who.asciidoc | 2 ++
 1 file changed, 2 insertions(+)

-- 
To stop receiving notification emails like this one, please contact
vie...@apache.org.

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

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



[incubator-netbeans-website] 01/01: Update who.asciidoc

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

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

commit 21b0c0b9408b409cafba42ccf8b92a7aa72a386f
Author: Antonio Vieiro 
AuthorDate: Mon Apr 2 19:26:41 2018 +0200

Update who.asciidoc
---
 netbeans.apache.org/src/content/community/who.asciidoc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/netbeans.apache.org/src/content/community/who.asciidoc 
b/netbeans.apache.org/src/content/community/who.asciidoc
index 5d903d5..f9bf2df 100644
--- a/netbeans.apache.org/src/content/community/who.asciidoc
+++ b/netbeans.apache.org/src/content/community/who.asciidoc
@@ -317,6 +317,8 @@ Committer
   - Java, Plugins, NetCAT 
 
 === John McDonnell
+Committer
+
   - BearingPoint Ireland, Dublin, Ireland 
   - Maven, Java EE, Docker 
 

-- 
To stop receiving notification emails like this one, please contact
vie...@apache.org.

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

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



[incubator-netbeans-website] branch john-committer created (now 21b0c0b)

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

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


  at 21b0c0b  Update who.asciidoc

This branch includes the following new commits:

 new 21b0c0b  Update who.asciidoc

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


-- 
To stop receiving notification emails like this one, please contact
vie...@apache.org.

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

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



[jira] [Commented] (NETBEANS-373) Netbeans sometimes freezes when showing any refactor dialog when running with jdk 1.8.0_152-b16 or later

2018-04-02 Thread Austin Stephens (JIRA)

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

Austin Stephens commented on NETBEANS-373:
--

I have added some screen shots showing any outstanding locks on the stack. It 
looks like it is syncing on "this" and not the tree lock.

> Netbeans sometimes freezes when showing any refactor dialog when running with 
> jdk 1.8.0_152-b16 or later
> 
>
> Key: NETBEANS-373
> URL: https://issues.apache.org/jira/browse/NETBEANS-373
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Refactoring
>Affects Versions: 8.2, 9.0
> Environment: Mac
>Reporter: Austin Stephens
>Priority: Blocker
> Attachments: Screen Shot 2018-04-02 at 11.22.11 AM.png, Screen Shot 
> 2018-04-02 at 11.23.15 AM.png, nbpresenter.diff
>
>
> Sometimes (or almost always), when you try to do some refactor action, 
> NetBeans freezes. It appears that a lock is obtained on a panel when the 
> dialog is shown, and the AppKit Thread tries to get the lock while trying to 
> add an accessible listener to it.
> AppKit Thread:
> {code:java}
> Container.addContainerListener:2142    
> Container$AccessibleAWTContainer.addPropertyChangeListener:3885    
> JComponent$AccessibleJComponent.addPropertyChangeListener:3765    
> Hidden Source Calls    
> CAccessible.addNotificationListeners:102    
> CAccessible.:84    
> CAccessible.getCAccessible:60
> {code}
> EDT Thread:
> {code:java}
> Hidden Source Calls    
> Unsafe.park    
> LockSupport.park:194    
> AbstractQueuedSynchronizer$ConditionObject.await:2062    
> EventQueue.getNextEvent:557    
> EventDispatchThread.pumpOneEventForFilters:173    
> EventDispatchThread.pumpEventsForFilter:124    
> EventDispatchThread.pumpEventsForFilter:117    
> WaitDispatchSupport$2.run:190    
> WaitDispatchSupport$4.run:235    
> WaitDispatchSupport$4.run:233    
> AccessController.doPrivileged    
> WaitDispatchSupport.enter:233    
> Dialog.show:1070    
> NbPresenter.superShow:1060    
> NbPresenter.doShow:1110    
> NbPresenter.run:1082    
> NbPresenter.run:105    
> NbMutexEventProvider$Event.doEventAccess:115    
> NbMutexEventProvider$Event.readAccess:75    
> LazyMutexImplementation.readAccess:71    
> Mutex.readAccess:193    
> NbPresenter.show:1067    
> Component.show:1669    
> Component.setVisible:1616    
> Window.setVisible:1017    
> Dialog.setVisible:1005    
> ParametersPanel.showDialog:674    
> RefactoringPanel.refresh:660    
> RefactoringPanel.:144    
> UI.openRefactoringUI:61    
> ContextAnalyzer$4.show:648    
> ContextAnalyzer$TextComponentTask.run:369    
> RefactoringActionsProvider.doFindUsages:232    
> ActionsImplementationFactory.doFindUsages:91    
> WhereUsedAction.performAction:52    
> RefactoringGlobalAction$ContextAction.actionPerformed:172    
> TopComponent.processKeyBinding:1151    
> JComponent.processKeyBindings:2963    
> JComponent.processKeyEvent:2863    
> Component.processEvent:6355    
> Container.processEvent:2259    
> Component.dispatchEventImpl:4961    
> Container.dispatchEventImpl:2317    
> Component.dispatchEvent:4793    
> KeyboardFocusManager.redispatchEvent:1955    
> DefaultKeyboardFocusManager.dispatchKeyEvent:827    
> DefaultKeyboardFocusManager.preDispatchKeyEvent:1096    
> DefaultKeyboardFocusManager.typeAheadAssertions:966    
> DefaultKeyboardFocusManager.dispatchEvent:792    
> Component.dispatchEventImpl:4842    
> Container.dispatchEventImpl:2317    
> Window.dispatchEventImpl:2758    
> Component.dispatchEvent:4793    
> EventQueue.dispatchEventImpl:766    
> EventQueue.access$500:97    
> EventQueue$3.run:717    
> EventQueue$3.run:711    
> AccessController.doPrivileged    
> ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege:89    
> ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege:99    
> EventQueue$4.run:739    
> EventQueue$4.run:737    
> AccessController.doPrivileged    
> ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege:89    
> EventQueue.dispatchEvent:736    
> TimableEventQueue.dispatchEvent:136    
> EventDispatchThread.pumpOneEventForFilters:199    
> EventDispatchThread.pumpEventsForFilter:124    
> EventDispatchThread.pumpEventsForHierarchy:113    
> EventDispatchThread.pumpEvents:109    
> EventDispatchThread.pumpEvents:101    
> EventDispatchThread.run:90   
> {code}
>  



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

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

For further information about the NetBeans mailing lists, visit:

[jira] [Updated] (NETBEANS-373) Netbeans sometimes freezes when showing any refactor dialog when running with jdk 1.8.0_152-b16 or later

2018-04-02 Thread Austin Stephens (JIRA)

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

Austin Stephens updated NETBEANS-373:
-
Attachment: Screen Shot 2018-04-02 at 11.22.11 AM.png
Screen Shot 2018-04-02 at 11.23.15 AM.png

> Netbeans sometimes freezes when showing any refactor dialog when running with 
> jdk 1.8.0_152-b16 or later
> 
>
> Key: NETBEANS-373
> URL: https://issues.apache.org/jira/browse/NETBEANS-373
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Refactoring
>Affects Versions: 8.2, 9.0
> Environment: Mac
>Reporter: Austin Stephens
>Priority: Blocker
> Attachments: Screen Shot 2018-04-02 at 11.22.11 AM.png, Screen Shot 
> 2018-04-02 at 11.23.15 AM.png, nbpresenter.diff
>
>
> Sometimes (or almost always), when you try to do some refactor action, 
> NetBeans freezes. It appears that a lock is obtained on a panel when the 
> dialog is shown, and the AppKit Thread tries to get the lock while trying to 
> add an accessible listener to it.
> AppKit Thread:
> {code:java}
> Container.addContainerListener:2142    
> Container$AccessibleAWTContainer.addPropertyChangeListener:3885    
> JComponent$AccessibleJComponent.addPropertyChangeListener:3765    
> Hidden Source Calls    
> CAccessible.addNotificationListeners:102    
> CAccessible.:84    
> CAccessible.getCAccessible:60
> {code}
> EDT Thread:
> {code:java}
> Hidden Source Calls    
> Unsafe.park    
> LockSupport.park:194    
> AbstractQueuedSynchronizer$ConditionObject.await:2062    
> EventQueue.getNextEvent:557    
> EventDispatchThread.pumpOneEventForFilters:173    
> EventDispatchThread.pumpEventsForFilter:124    
> EventDispatchThread.pumpEventsForFilter:117    
> WaitDispatchSupport$2.run:190    
> WaitDispatchSupport$4.run:235    
> WaitDispatchSupport$4.run:233    
> AccessController.doPrivileged    
> WaitDispatchSupport.enter:233    
> Dialog.show:1070    
> NbPresenter.superShow:1060    
> NbPresenter.doShow:1110    
> NbPresenter.run:1082    
> NbPresenter.run:105    
> NbMutexEventProvider$Event.doEventAccess:115    
> NbMutexEventProvider$Event.readAccess:75    
> LazyMutexImplementation.readAccess:71    
> Mutex.readAccess:193    
> NbPresenter.show:1067    
> Component.show:1669    
> Component.setVisible:1616    
> Window.setVisible:1017    
> Dialog.setVisible:1005    
> ParametersPanel.showDialog:674    
> RefactoringPanel.refresh:660    
> RefactoringPanel.:144    
> UI.openRefactoringUI:61    
> ContextAnalyzer$4.show:648    
> ContextAnalyzer$TextComponentTask.run:369    
> RefactoringActionsProvider.doFindUsages:232    
> ActionsImplementationFactory.doFindUsages:91    
> WhereUsedAction.performAction:52    
> RefactoringGlobalAction$ContextAction.actionPerformed:172    
> TopComponent.processKeyBinding:1151    
> JComponent.processKeyBindings:2963    
> JComponent.processKeyEvent:2863    
> Component.processEvent:6355    
> Container.processEvent:2259    
> Component.dispatchEventImpl:4961    
> Container.dispatchEventImpl:2317    
> Component.dispatchEvent:4793    
> KeyboardFocusManager.redispatchEvent:1955    
> DefaultKeyboardFocusManager.dispatchKeyEvent:827    
> DefaultKeyboardFocusManager.preDispatchKeyEvent:1096    
> DefaultKeyboardFocusManager.typeAheadAssertions:966    
> DefaultKeyboardFocusManager.dispatchEvent:792    
> Component.dispatchEventImpl:4842    
> Container.dispatchEventImpl:2317    
> Window.dispatchEventImpl:2758    
> Component.dispatchEvent:4793    
> EventQueue.dispatchEventImpl:766    
> EventQueue.access$500:97    
> EventQueue$3.run:717    
> EventQueue$3.run:711    
> AccessController.doPrivileged    
> ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege:89    
> ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege:99    
> EventQueue$4.run:739    
> EventQueue$4.run:737    
> AccessController.doPrivileged    
> ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege:89    
> EventQueue.dispatchEvent:736    
> TimableEventQueue.dispatchEvent:136    
> EventDispatchThread.pumpOneEventForFilters:199    
> EventDispatchThread.pumpEventsForFilter:124    
> EventDispatchThread.pumpEventsForHierarchy:113    
> EventDispatchThread.pumpEvents:109    
> EventDispatchThread.pumpEvents:101    
> EventDispatchThread.run:90   
> {code}
>  



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

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

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



[jira] [Resolved] (NETBEANS-408) Test org.netbeans.modules.junit.ant.ui.AntJUnitManagerProviderTest FAILED

2018-04-02 Thread Hector Espert (JIRA)

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

Hector Espert resolved NETBEANS-408.

   Resolution: Resolved
Fix Version/s: 9.0

> Test org.netbeans.modules.junit.ant.ui.AntJUnitManagerProviderTest FAILED
> -
>
> Key: NETBEANS-408
> URL: https://issues.apache.org/jira/browse/NETBEANS-408
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - JUnit
>Affects Versions: 9.0
>Reporter: Hector Espert
>Priority: Trivial
>  Labels: pull-request-available
> Fix For: 9.0
>
>  Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> The AntJUnitManagerProviderTest unit test at Ant Junit UI module fails when 
> execute because it is a prototype and call fail method.
>  
> {code:java}
> AntJUnitManagerProvider instance = new AntJUnitManagerProvider();
> instance.registerNodeFactory();
> // TODO review the generated test code and remove the default call to fail.
> fail("The test case is a prototype.");
> {code}



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

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

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



[jira] [Resolved] (NETBEANS-308) Licensing of javafx2.samples stock photos

2018-04-02 Thread Geertjan Wielenga (JIRA)

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

Geertjan Wielenga resolved NETBEANS-308.

Resolution: Fixed

> Licensing of javafx2.samples stock photos
> -
>
> Key: NETBEANS-308
> URL: https://issues.apache.org/jira/browse/NETBEANS-308
> Project: NetBeans
>  Issue Type: Bug
>Reporter: Geertjan Wielenga
>Priority: Major
>  Labels: pull-request-available
>  Time Spent: 40m
>  Remaining Estimate: 0h
>
> There seem to be a number of stock photos in the release. How are they 
> licensed? Do you have permission to use or distribute them?
> See these specific stock photos:
> javafx2.samples/DisplayShelf/src/displayshelf/animalX.jpg
> javafx2.samples/Fireworks/src/Fireworks/sf.jpg
> javafx2.samples/PuzzlePieces/src/puzzlepieces/PuzzlePieces-picture.jpg



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

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

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



[incubator-netbeans-website] 01/01: Merge pull request #22 from apache/delete-unused-test-file

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

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

commit 7f4c8b82cb70be456664adff317f28178447f162
Merge: 7383720 6321da7
Author: Antonio Vieiro 
AuthorDate: Mon Apr 2 18:08:54 2018 +0200

Merge pull request #22 from apache/delete-unused-test-file

Delete unused test.md (testing jenkins webhook integration)

 netbeans.apache.org/src/content/test.md | 31 ---
 1 file changed, 31 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
vie...@apache.org.

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

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



[incubator-netbeans-website] branch master updated (7383720 -> 7f4c8b8)

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

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


from 7383720  Merge pull request #20 from jlahoda/master
 add 6321da7  Delete test.md
 new 7f4c8b8  Merge pull request #22 from apache/delete-unused-test-file

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


Summary of changes:
 netbeans.apache.org/src/content/test.md | 31 ---
 1 file changed, 31 deletions(-)
 delete mode 100644 netbeans.apache.org/src/content/test.md

-- 
To stop receiving notification emails like this one, please contact
vie...@apache.org.

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

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



[jira] [Closed] (NETBEANS-566) "illegal reflective access operation" warning when profiling

2018-04-02 Thread Glenn Holmer (JIRA)

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

Glenn Holmer closed NETBEANS-566.
-
Resolution: Duplicate

Sorry, duplicate of 298.

> "illegal reflective access operation" warning when profiling
> 
>
> Key: NETBEANS-566
> URL: https://issues.apache.org/jira/browse/NETBEANS-566
> Project: NetBeans
>  Issue Type: Bug
>  Components: profiler - Base
>Affects Versions: 9.0
>Reporter: Glenn Holmer
>Priority: Minor
>
> Starting the profiler under JDK10 gives the following warning:
> WARNING: An illegal reflective access operation has occurred
> WARNING: Illegal reflective access by 
> org.netbeans.lib.profiler.server.ClassLoaderManager to method 
> java.lang.ClassLoader.findLoadedClass(java.lang.String)
> WARNING: Please consider reporting this to the maintainers of 
> org.netbeans.lib.profiler.server.ClassLoaderManager
> WARNING: Use --illegal-access=warn to enable warnings of further illegal 
> reflective access operations
> WARNING: All illegal access operations will be denied in a future release
> I see it twice: once in messages.log during VM calibration, then again in the 
> output window when the profiler starts.



--
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-566) "illegal reflective access operation" warning when profiling

2018-04-02 Thread Glenn Holmer (JIRA)
Glenn Holmer created NETBEANS-566:
-

 Summary: "illegal reflective access operation" warning when 
profiling
 Key: NETBEANS-566
 URL: https://issues.apache.org/jira/browse/NETBEANS-566
 Project: NetBeans
  Issue Type: Bug
  Components: profiler - Base
Affects Versions: 9.0
Reporter: Glenn Holmer


Starting the profiler under JDK10 gives the following warning:

WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by 
org.netbeans.lib.profiler.server.ClassLoaderManager to method 
java.lang.ClassLoader.findLoadedClass(java.lang.String)
WARNING: Please consider reporting this to the maintainers of 
org.netbeans.lib.profiler.server.ClassLoaderManager
WARNING: Use --illegal-access=warn to enable warnings of further illegal 
reflective access operations
WARNING: All illegal access operations will be denied in a future release

I see it twice: once in messages.log during VM calibration, then again in the 
output window when the profiler starts.



--
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-565) Missing Css3.g file from donation

2018-04-02 Thread JIRA
Matthias Bläsing created NETBEANS-565:
-

 Summary: Missing Css3.g file from donation
 Key: NETBEANS-565
 URL: https://issues.apache.org/jira/browse/NETBEANS-565
 Project: NetBeans
  Issue Type: Bug
  Components: web - CSS Editor
Affects Versions: 9.0
Reporter: Matthias Bläsing
Assignee: Geertjan Wielenga
 Attachments: nb_css_parser.patch

While investigating a potential CSS parser error I saw while working with NB9
 and noticed, that one of the most important files is missing:

css.lib/src/org/netbeans/modules/css/lib/Css3.g

that file holds an antlr3 grammer for CSS 3. That file was not donated
 and I think the reason is, that the header contains a different
 copyright:
{noformat}
 // Author  : Jim Idle, Temporal Wave LLC.
 // Contact : j...@temporal-wave.com
 // Website : http://www.temporal-wave.com
 // License : ANTLR Free BSD License
{noformat}
My investigation showed, that the file is based on:

[https://github.com/antlr/grammars-v3/blob/master/css21/css21.g]
 or
 [https://github.com/antlr/grammars-v3/raw/master/css21/css21.g]

the headers and big chunks of the first checkin of Css3.g match.

I see that oracle might feel uncomfortable/prohibited donating the
 whole file, but what could be donated is a diff between the original
 file from the antlr repository and the current state in netbeans.

In technical term I suggest, that the patch against the base file is
 donated:
{noformat}
# Get basefile
wget https://github.com/antlr/grammars-v3/raw/master/css21/css21.g
# Get netbeans state
wget 
http://hg.netbeans.org/releases/raw-file/tip/css.lib/src/org/netbeans/modules/css/lib/Css3.g
# Create patch
diff -u css21.g Css3.g > nb_css_parser.patch
{noformat}
That diff than only contains changes done by netbeans committers and this is
 either covered by the normal Oracle copyright (employees working on
 netbeans) or the OCLA.
Maybe it helps, that there are only three authors listed in the history (taken 
from the releases repository):
 * Marek Fukala 
 * Milutin Kristofic 
 * Ondrej Brejla 

As requested by mail I created this issue to track the donation. I attached the 
diff/patch described above to this issue. I did not touch the file after 
creating the diff, as the license headers can be adjusted if/when oracle agrees 
to donate the contents (I'm willing to do the integration).



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

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

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



[incubator-netbeans] branch master updated (54c60be -> 4865d09)

2018-04-02 Thread matthiasblaesing
This is an automated email from the ASF dual-hosted git repository.

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


from 54c60be  Merge pull request #470 from matthiasblaesing/netbeans-284
 add e9efbd8  [NETBEANS-560] Update english spellchecker dictionaries
 new 4865d09  Merge pull request #474 from matthiasblaesing/netbeans-560

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


Summary of changes:
 nbbuild/licenses/BSD-SCOWL | 255 
 spellchecker.dictionary_en/external/binaries-list  |   3 +-
 .../external/ispell-enwl-3.1.20-license.txt|  51 
 .../external/wordlist-2017.08.24-license.txt   | 262 +
 .../nbproject/project.properties   |   5 +-
 .../release/modules/dict/dictionary_en.description |   8 +-
 .../modules/dict/dictionary_en_GB.description  |   8 +-
 .../modules/dict/dictionary_en_US.description  |   8 +-
 .../spellchecker/dictionary_en/Bundle.properties   |   2 +-
 9 files changed, 526 insertions(+), 76 deletions(-)
 create mode 100644 nbbuild/licenses/BSD-SCOWL
 delete mode 100644 
spellchecker.dictionary_en/external/ispell-enwl-3.1.20-license.txt
 create mode 100644 
spellchecker.dictionary_en/external/wordlist-2017.08.24-license.txt

-- 
To stop receiving notification emails like this one, please contact
matthiasblaes...@apache.org.

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

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



[jira] [Created] (NETBEANS-564) Opening .form/.java file raises exception from java parser

2018-04-02 Thread JIRA
Matthias Bläsing created NETBEANS-564:
-

 Summary: Opening .form/.java file raises exception from java parser
 Key: NETBEANS-564
 URL: https://issues.apache.org/jira/browse/NETBEANS-564
 Project: NetBeans
  Issue Type: Bug
  Components: java - Source
Affects Versions: 9.0
Reporter: Matthias Bläsing
 Attachments: NotifyHtmlPanel.dump

h2. Error

When opening a .form/.java file combination I get an exception, that is raised 
from the java parser:
{noformat}
Annotation: An error occurred during parsing of 
'/tmp/vcs-1522660054567/vcs-1522660054568/NotifyHtmlPanel.java'. Please report 
a bug against java/source and attach dump file 
'/home/matthias/src/incubator-netbeans/nbbuild/testuserdir/var/log/NotifyHtmlPanel.dump'.
Annotation: An error occurred during parsing of 
'/tmp/vcs-1522660054567/vcs-1522660054568/NotifyHtmlPanel.java'. Please report 
a bug against java/source and attach dump file 
'/home/matthias/src/incubator-netbeans/nbbuild/testuserdir/var/log/NotifyHtmlPanel.dump'.
Annotation: An error occurred during parsing of 
'/tmp/vcs-1522660054567/vcs-1522660054568/NotifyHtmlPanel.java'. Please report 
a bug against java/source and attach dump file 
'/home/matthias/src/incubator-netbeans/nbbuild/testuserdir/var/log/NotifyHtmlPanel.dump'.
Annotation: An error occurred during parsing of 
'/tmp/vcs-1522660054567/vcs-1522660054568/NotifyHtmlPanel.java'. Please report 
a bug against java/source and attach dump file 
'/home/matthias/src/incubator-netbeans/nbbuild/testuserdir/var/log/NotifyHtmlPanel.dump'.
An error occurred during parsing of 
'/tmp/vcs-1522660054567/vcs-1522660054568/NotifyHtmlPanel.java'. Please report 
a bug against java/source and attach dump file 
'/home/matthias/src/incubator-netbeans/nbbuild/testuserdir/var/log/NotifyHtmlPanel.dump'.
An error occurred during parsing of 
'/tmp/vcs-1522660054567/vcs-1522660054568/NotifyHtmlPanel.java'. Please report 
a bug against java/source and attach dump file 
'/home/matthias/src/incubator-netbeans/nbbuild/testuserdir/var/log/NotifyHtmlPanel.dump'.
Caused: 
org.netbeans.modules.java.source.parsing.FileObjects$InvalidFileException: 
Invalid or deleted file: 
/tmp/vcs-1522660054567/vcs-1522660054568/NotifyHtmlPanel.java
    at 
org.netbeans.modules.java.source.parsing.FileObjects.sourceFileObject(FileObjects.java:354)
    at 
org.netbeans.modules.java.source.parsing.FileObjects.sourceFileObject(FileObjects.java:334)
Caused: java.lang.IllegalArgumentException
    at 
org.netbeans.modules.java.source.parsing.FileObjects.sourceFileObject(FileObjects.java:337)
    at 
org.netbeans.modules.java.source.parsing.JavacParser.createJavacTask(JavacParser.java:730)
    at 
org.netbeans.modules.java.source.parsing.CompilationInfoImpl.getJavacTask(CompilationInfoImpl.java:374)
[catch] at 
org.netbeans.modules.java.source.parsing.JavacParser.moveToPhase(JavacParser.java:580)
    at 
org.netbeans.modules.java.source.parsing.CompilationInfoImpl.toPhase(CompilationInfoImpl.java:361)
    at 
org.netbeans.api.java.source.CompilationController.toPhase(CompilationController.java:84)
    at 
org.netbeans.modules.java.JavaNode$IconTask$SourceIcon$1.run(JavaNode.java:443)
    at 
org.netbeans.modules.java.JavaNode$IconTask$SourceIcon$1.run(JavaNode.java:440)
    at 
org.netbeans.api.java.source.JavaSource$MultiTask.run(JavaSource.java:501)
    at 
org.netbeans.modules.parsing.impl.TaskProcessor.callUserTask(TaskProcessor.java:586)
    at 
org.netbeans.modules.parsing.api.ParserManager$UserTaskAction.run(ParserManager.java:130)
    at 
org.netbeans.modules.parsing.api.ParserManager$UserTaskAction.run(ParserManager.java:114)
    at 
org.netbeans.modules.parsing.impl.TaskProcessor$2.call(TaskProcessor.java:181)
    at 
org.netbeans.modules.parsing.impl.TaskProcessor$2.call(TaskProcessor.java:178)
    at 
org.netbeans.modules.masterfs.filebasedfs.utils.FileChangedManager.priorityIO(FileChangedManager.java:153)
    at 
org.netbeans.modules.masterfs.providers.ProvidedExtensions.priorityIO(ProvidedExtensions.java:335)
    at 
org.netbeans.modules.parsing.nb.DataObjectEnvFactory.runPriorityIO(DataObjectEnvFactory.java:118)
    at 
org.netbeans.modules.parsing.impl.Utilities.runPriorityIO(Utilities.java:67)
    at 
org.netbeans.modules.parsing.impl.TaskProcessor.runUserTask(TaskProcessor.java:178)
    at 
org.netbeans.modules.parsing.api.ParserManager.parse(ParserManager.java:81)
    at 
org.netbeans.api.java.source.JavaSource.runUserActionTaskImpl(JavaSource.java:451)
    at 
org.netbeans.api.java.source.JavaSource.runUserActionTask(JavaSource.java:422)
    at 
org.netbeans.modules.java.JavaNode$IconTask$SourceIcon.computeIcon(JavaNode.java:440)
    at org.netbeans.modules.java.JavaNode$IconTask.run(JavaNode.java:402)
    at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1418)
    at 

[jira] [Commented] (NETBEANS-373) Netbeans sometimes freezes when showing any refactor dialog when running with jdk 1.8.0_152-b16 or later

2018-04-02 Thread Michael Bar-Sinai (JIRA)

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

Michael Bar-Sinai commented on NETBEANS-373:


Workaround: the problem goes away when switching to NimbusLaF. Persists on 
MacOS and Darcula LaFs.

> Netbeans sometimes freezes when showing any refactor dialog when running with 
> jdk 1.8.0_152-b16 or later
> 
>
> Key: NETBEANS-373
> URL: https://issues.apache.org/jira/browse/NETBEANS-373
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Refactoring
>Affects Versions: 8.2, 9.0
> Environment: Mac
>Reporter: Austin Stephens
>Priority: Blocker
> Attachments: nbpresenter.diff
>
>
> Sometimes (or almost always), when you try to do some refactor action, 
> NetBeans freezes. It appears that a lock is obtained on a panel when the 
> dialog is shown, and the AppKit Thread tries to get the lock while trying to 
> add an accessible listener to it.
> AppKit Thread:
> {code:java}
> Container.addContainerListener:2142    
> Container$AccessibleAWTContainer.addPropertyChangeListener:3885    
> JComponent$AccessibleJComponent.addPropertyChangeListener:3765    
> Hidden Source Calls    
> CAccessible.addNotificationListeners:102    
> CAccessible.:84    
> CAccessible.getCAccessible:60
> {code}
> EDT Thread:
> {code:java}
> Hidden Source Calls    
> Unsafe.park    
> LockSupport.park:194    
> AbstractQueuedSynchronizer$ConditionObject.await:2062    
> EventQueue.getNextEvent:557    
> EventDispatchThread.pumpOneEventForFilters:173    
> EventDispatchThread.pumpEventsForFilter:124    
> EventDispatchThread.pumpEventsForFilter:117    
> WaitDispatchSupport$2.run:190    
> WaitDispatchSupport$4.run:235    
> WaitDispatchSupport$4.run:233    
> AccessController.doPrivileged    
> WaitDispatchSupport.enter:233    
> Dialog.show:1070    
> NbPresenter.superShow:1060    
> NbPresenter.doShow:1110    
> NbPresenter.run:1082    
> NbPresenter.run:105    
> NbMutexEventProvider$Event.doEventAccess:115    
> NbMutexEventProvider$Event.readAccess:75    
> LazyMutexImplementation.readAccess:71    
> Mutex.readAccess:193    
> NbPresenter.show:1067    
> Component.show:1669    
> Component.setVisible:1616    
> Window.setVisible:1017    
> Dialog.setVisible:1005    
> ParametersPanel.showDialog:674    
> RefactoringPanel.refresh:660    
> RefactoringPanel.:144    
> UI.openRefactoringUI:61    
> ContextAnalyzer$4.show:648    
> ContextAnalyzer$TextComponentTask.run:369    
> RefactoringActionsProvider.doFindUsages:232    
> ActionsImplementationFactory.doFindUsages:91    
> WhereUsedAction.performAction:52    
> RefactoringGlobalAction$ContextAction.actionPerformed:172    
> TopComponent.processKeyBinding:1151    
> JComponent.processKeyBindings:2963    
> JComponent.processKeyEvent:2863    
> Component.processEvent:6355    
> Container.processEvent:2259    
> Component.dispatchEventImpl:4961    
> Container.dispatchEventImpl:2317    
> Component.dispatchEvent:4793    
> KeyboardFocusManager.redispatchEvent:1955    
> DefaultKeyboardFocusManager.dispatchKeyEvent:827    
> DefaultKeyboardFocusManager.preDispatchKeyEvent:1096    
> DefaultKeyboardFocusManager.typeAheadAssertions:966    
> DefaultKeyboardFocusManager.dispatchEvent:792    
> Component.dispatchEventImpl:4842    
> Container.dispatchEventImpl:2317    
> Window.dispatchEventImpl:2758    
> Component.dispatchEvent:4793    
> EventQueue.dispatchEventImpl:766    
> EventQueue.access$500:97    
> EventQueue$3.run:717    
> EventQueue$3.run:711    
> AccessController.doPrivileged    
> ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege:89    
> ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege:99    
> EventQueue$4.run:739    
> EventQueue$4.run:737    
> AccessController.doPrivileged    
> ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege:89    
> EventQueue.dispatchEvent:736    
> TimableEventQueue.dispatchEvent:136    
> EventDispatchThread.pumpOneEventForFilters:199    
> EventDispatchThread.pumpEventsForFilter:124    
> EventDispatchThread.pumpEventsForHierarchy:113    
> EventDispatchThread.pumpEvents:109    
> EventDispatchThread.pumpEvents:101    
> EventDispatchThread.run:90   
> {code}
>  



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

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

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