[incubator-netbeans] branch master updated: Fix the wrong file place (#809)

2018-08-28 Thread junichi11
This is an automated email from the ASF dual-hosted git repository.

junichi11 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 a1f7fc6  Fix the wrong file place (#809)
a1f7fc6 is described below

commit a1f7fc678a66221c68f8ba9df4a1c114600509f6
Author: Junichi Yamamoto 
AuthorDate: Wed Aug 29 05:56:39 2018 +0900

Fix the wrong file place (#809)

- Move `libs.testng/external/testng-6.8.1-dist-notice.txt` to 
`platform/libs.testng/external/testng-6.8.1-dist-notice.txt`
---
 .../libs.testng}/external/testng-6.8.1-dist-notice.txt| 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/libs.testng/external/testng-6.8.1-dist-notice.txt 
b/platform/libs.testng/external/testng-6.8.1-dist-notice.txt
similarity index 100%
rename from libs.testng/external/testng-6.8.1-dist-notice.txt
rename to platform/libs.testng/external/testng-6.8.1-dist-notice.txt


-
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-1190] Add more icon sizes to NetBeans' MainWindow (#793)

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

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


The following commit(s) were added to refs/heads/master by this push:
 new 4235bab  [NETBEANS-1190] Add more icon sizes to NetBeans' MainWindow 
(#793)
4235bab is described below

commit 4235babca7d4b55bfb916a238d054640d58b3e8e
Author: Ralph Benjamin Ruijs 
AuthorDate: Tue Aug 28 20:30:45 2018 +0200

[NETBEANS-1190] Add more icon sizes to NetBeans' MainWindow (#793)

* Extraced icons from MacOSX Launcher's icns and included them for the 
MainWindow/Splash
---
 .../src/org/netbeans/core/startup/Splash.java   |   8 +++-
 .../src/org/netbeans/core/startup/frame1024.png | Bin 0 -> 45852 bytes
 .../src/org/netbeans/core/startup/frame256.png  | Bin 0 -> 9132 bytes
 .../src/org/netbeans/core/startup/frame512.png  | Bin 0 -> 20905 bytes
 .../org/netbeans/core/windows/view/ui/MainWindow.java   |   8 +++-
 5 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/platform/core.startup/src/org/netbeans/core/startup/Splash.java 
b/platform/core.startup/src/org/netbeans/core/startup/Splash.java
index 5476809..a48e6a0 100644
--- a/platform/core.startup/src/org/netbeans/core/startup/Splash.java
+++ b/platform/core.startup/src/org/netbeans/core/startup/Splash.java
@@ -74,11 +74,17 @@ public final class Splash implements Stamps.Updater {
 private static final String ICON_16 = 
"org/netbeans/core/startup/frame.gif"; // NOI18N
 private static final String ICON_32 = 
"org/netbeans/core/startup/frame32.gif"; // NOI18N
 private static final String ICON_48 = 
"org/netbeans/core/startup/frame48.gif"; // NOI18N
+private static final String ICON_256 = 
"org/netbeans/core/startup/frame256.png"; // NOI18N
+private static final String ICON_512 = 
"org/netbeans/core/startup/frame512.png"; // NOI18N
+private static final String ICON_1024 = 
"org/netbeans/core/startup/frame1024.png"; // NOI18N
 private void initFrameIcons (Frame f) {
 f.setIconImages(Arrays.asList(
 ImageUtilities.loadImage(ICON_16, true),
 ImageUtilities.loadImage(ICON_32, true),
-ImageUtilities.loadImage(ICON_48, true)));
+ImageUtilities.loadImage(ICON_48, true),
+ImageUtilities.loadImage(ICON_256, true),
+ImageUtilities.loadImage(ICON_512, true),
+ImageUtilities.loadImage(ICON_1024, true)));
 }
 
 private Frame frame;
diff --git a/platform/core.startup/src/org/netbeans/core/startup/frame1024.png 
b/platform/core.startup/src/org/netbeans/core/startup/frame1024.png
new file mode 100644
index 000..bd45104
Binary files /dev/null and 
b/platform/core.startup/src/org/netbeans/core/startup/frame1024.png differ
diff --git a/platform/core.startup/src/org/netbeans/core/startup/frame256.png 
b/platform/core.startup/src/org/netbeans/core/startup/frame256.png
new file mode 100644
index 000..5dab276
Binary files /dev/null and 
b/platform/core.startup/src/org/netbeans/core/startup/frame256.png differ
diff --git a/platform/core.startup/src/org/netbeans/core/startup/frame512.png 
b/platform/core.startup/src/org/netbeans/core/startup/frame512.png
new file mode 100644
index 000..2550364
Binary files /dev/null and 
b/platform/core.startup/src/org/netbeans/core/startup/frame512.png differ
diff --git 
a/platform/core.windows/src/org/netbeans/core/windows/view/ui/MainWindow.java 
b/platform/core.windows/src/org/netbeans/core/windows/view/ui/MainWindow.java
index 7f8438e..8139c2b 100755
--- 
a/platform/core.windows/src/org/netbeans/core/windows/view/ui/MainWindow.java
+++ 
b/platform/core.windows/src/org/netbeans/core/windows/view/ui/MainWindow.java
@@ -504,6 +504,9 @@ public final class MainWindow {
private static final String ICON_16 = 
"org/netbeans/core/startup/frame.gif"; // NOI18N
private static final String ICON_32 = 
"org/netbeans/core/startup/frame32.gif"; // NOI18N
private static final String ICON_48 = 
"org/netbeans/core/startup/frame48.gif"; // NOI18N
+   private static final String ICON_256 = 
"org/netbeans/core/startup/frame256.png"; // NOI18N
+   private static final String ICON_512 = 
"org/netbeans/core/startup/frame512.png"; // NOI18N
+   private static final String ICON_1024 = 
"org/netbeans/core/startup/frame1024.png"; // NOI18N
static void initFrameIcons(Frame f) {
List currentIcons = f.getIconImages();
if( !currentIcons.isEmpty() )
@@ -511,7 +514,10 @@ public final class MainWindow {
f.setIconImages(Arrays.asList(
ImageUtilities.loadImage(ICON_16, true),
ImageUtilities.loadImage(ICON_32, true),
-   ImageUtilities.loadImage(ICON_48, true)));
+   ImageUtilities.loadImage(ICON_48, true),
+   ImageUtilities.loadImage(ICON_256, true),
+  

[incubator-netbeans] branch master updated (a73c477 -> b278063)

2018-08-28 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 a73c477  Merge pull request #789 from 
vikasprabhakar/code_donation_websvc_core
 add 806a374  [NETBEANS-1074] Module Review j2ee.ddloaders
 add b278063  Merge pull request #768 from 
sarveshkesharwani/netbeans-1074-j2ee.ddloaders-donation-review

No new revisions were added by this update.

Summary of changes:
 j2ee.ddloaders/licenseinfo.xml | 65 
 .../multiview/ui/AddEjbReferenceForm.form  | 20 +++
 .../j2ee/ddloaders/web/multiview/Bundle.properties | 53 +---
 .../modules/j2ee/ddloaders/web/resources/xml.xsd   | 70 +-
 4 files changed, 167 insertions(+), 41 deletions(-)
 create mode 100644 j2ee.ddloaders/licenseinfo.xml


-
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 (ef3e848 -> a73c477)

2018-08-28 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 ef3e848  Merge pull request #800 from 
sarveshkesharwani/netbeans-1074-cordova-donation-review
 add 0f9b33a  [NETBEANS-1074] Module Review websvc.core
 new a73c477  Merge pull request #789 from 
vikasprabhakar/code_donation_websvc_core

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:
 websvc.core/build.xml  |   6 -
 websvc.core/external/binaries-list |   1 -
 websvc.core/external/glassfish-license.txt | 274 -
 websvc.core/licenseinfo.xml|  72 
 .../websvc/core/dev/wizard/Bundle.properties   |  54 +--
 .../websvc/core/dev/wizard/nodes/ServiceNode.java  |  54 +--
 .../websvc/core/dev/wizard/nodes/WsdlNode.java |  54 +--
 .../websvc/core/jaxws/nodes/ServiceNode.java   |  54 +--
 .../projects/J2SEWSSupportLookupProvider.java  |  53 +--
 .../core/resources/default-binding-handler.xml |  20 +
 .../javaee_web_services_metadata_handler_2_0.xsd   |  77 
 .../modules/websvc/core/resources/sun-jaxws.xsd| 125 ++
 .../resources/wsdl_customizationschema_2_0.xsd | 433 +
 13 files changed, 800 insertions(+), 477 deletions(-)
 delete mode 100644 websvc.core/external/binaries-list
 delete mode 100644 websvc.core/external/glassfish-license.txt
 create mode 100644 websvc.core/licenseinfo.xml
 create mode 100644 
websvc.core/src/org/netbeans/modules/websvc/core/resources/javaee_web_services_metadata_handler_2_0.xsd
 create mode 100644 
websvc.core/src/org/netbeans/modules/websvc/core/resources/sun-jaxws.xsd
 create mode 100644 
websvc.core/src/org/netbeans/modules/websvc/core/resources/wsdl_customizationschema_2_0.xsd


-
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] 01/01: Merge pull request #789 from vikasprabhakar/code_donation_websvc_core

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

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

commit a73c4771fe4f6a08e55df004ad3b2b8da7f51b53
Merge: ef3e848 0f9b33a
Author: Matthias Bläsing 
AuthorDate: Tue Aug 28 20:14:34 2018 +0200

Merge pull request #789 from vikasprabhakar/code_donation_websvc_core

[NETBEANS-1074] Module Review websvc.core

 websvc.core/build.xml  |   6 -
 websvc.core/external/binaries-list |   1 -
 websvc.core/external/glassfish-license.txt | 274 -
 websvc.core/licenseinfo.xml|  72 
 .../websvc/core/dev/wizard/Bundle.properties   |  54 +--
 .../websvc/core/dev/wizard/nodes/ServiceNode.java  |  54 +--
 .../websvc/core/dev/wizard/nodes/WsdlNode.java |  54 +--
 .../websvc/core/jaxws/nodes/ServiceNode.java   |  54 +--
 .../projects/J2SEWSSupportLookupProvider.java  |  53 +--
 .../core/resources/default-binding-handler.xml |  20 +
 .../javaee_web_services_metadata_handler_2_0.xsd   |  77 
 .../modules/websvc/core/resources/sun-jaxws.xsd| 125 ++
 .../resources/wsdl_customizationschema_2_0.xsd | 433 +
 13 files changed, 800 insertions(+), 477 deletions(-)


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

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



[incubator-netbeans] 01/01: Merge pull request #800 from sarveshkesharwani/netbeans-1074-cordova-donation-review

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

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

commit ef3e8483be109a69f27b6b8a815f4812e7417110
Merge: 50b800c c5de7f3
Author: Matthias Bläsing 
AuthorDate: Tue Aug 28 19:08:26 2018 +0200

Merge pull request #800 from 
sarveshkesharwani/netbeans-1074-cordova-donation-review

[NETBEANS-1074] Module Review cordova

 cordova/CordovaMapsSample/www/index.html   | 48 +++---
 cordova/CordovaMapsSample/www/readme.md| 21 ++
 .../modules/cordova/updatetask/AndroidManifest.xml | 22 ++
 .../modules/cordova/updatetask/Info-plist.xml  | 21 ++
 .../netbeans/modules/cordova/updatetask/config.xml | 22 ++
 .../modules/cordova/updatetask/dev_config.xml  | 22 ++
 cordova/licenseinfo.xml| 39 ++
 .../org/netbeans/modules/cordova/empty.properties  | 17 
 .../netbeans/modules/cordova/mapplugins.properties | 17 
 .../netbeans/modules/cordova/plugins.properties| 17 
 10 files changed, 213 insertions(+), 33 deletions(-)


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

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



[incubator-netbeans] branch master updated (50b800c -> ef3e848)

2018-08-28 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 50b800c  Merge pull request #810 from 
sarveshkesharwani/netbeans-1074-selenium2.webclient.protractor-donation-review
 add c5de7f3  [NETBEANS-1074] Module Review cordova
 new ef3e848  Merge pull request #800 from 
sarveshkesharwani/netbeans-1074-cordova-donation-review

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:
 cordova/CordovaMapsSample/www/index.html   | 48 +++---
 cordova/CordovaMapsSample/www/readme.md| 21 ++
 .../modules/cordova/updatetask/AndroidManifest.xml | 22 ++
 .../modules/cordova/updatetask/Info-plist.xml  | 21 ++
 .../netbeans/modules/cordova/updatetask/config.xml | 22 ++
 .../modules/cordova/updatetask/dev_config.xml  | 22 ++
 {ide/derby => cordova}/licenseinfo.xml | 20 +
 .../org/netbeans/modules/cordova/empty.properties  | 17 
 .../netbeans/modules/cordova/mapplugins.properties | 17 
 .../netbeans/modules/cordova/plugins.properties| 17 
 10 files changed, 187 insertions(+), 40 deletions(-)
 copy {ide/derby => cordova}/licenseinfo.xml (53%)


-
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 (995eae8 -> 50b800c)

2018-08-28 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 995eae8  Merge pull request #804 from 
sarveshkesharwani/netbeans-1074-selenium2.webclient.mocha-donation-review
 add 6bcf3fd  [NETBEANS-1074] Module Review selenium2.webclient.protractor
 add 50b800c  Merge pull request #810 from 
sarveshkesharwani/netbeans-1074-selenium2.webclient.protractor-donation-review

No new revisions were added by this update.

Summary of changes:
 .../licenseinfo.xml|  2 +-
 .../webclient/protractor/wizard/protractor.conf.js | 56 --
 2 files changed, 20 insertions(+), 38 deletions(-)
 copy {selenium2.webclient.mocha => 
selenium2.webclient.protractor}/licenseinfo.xml (89%)


-
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 (be6bac3 -> 995eae8)

2018-08-28 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 be6bac3  Merge pull request #806 from matthiasblaesing/netbeans-1166
 add 1aaa702  [NETBEANS-1074] Module Review selenium2.webclient.mocha
 add 995eae8  Merge pull request #804 from 
sarveshkesharwani/netbeans-1074-selenium2.webclient.mocha-donation-review

No new revisions were added by this update.

Summary of changes:
 {web.jsf.icefaces => selenium2.webclient.mocha}/licenseinfo.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 copy {web.jsf.icefaces => selenium2.webclient.mocha}/licenseinfo.xml (85%)


-
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 (208af3c -> be6bac3)

2018-08-28 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 208af3c  Merge pull request #785 from 
arusinha/module-review-libs.amazon
 add dffa844  [NETBEANS-1166] Reintegrate schema files and add license info
 add be6bac3  Merge pull request #806 from matthiasblaesing/netbeans-1166

No new revisions were added by this update.

Summary of changes:
 web.core/build.xml |6 -
 web.core/external/binaries-list|   18 -
 web.core/external/glassfish-license.txt|  274 ---
 web.core/external/w3c-license.txt  |   37 -
 web.core/licenseinfo.xml   |   19 +-
 .../modules/web/taglib/resources/j2ee_1_4.xsd  | 1619 +++
 .../resources/j2ee_web_services_client_1_1.xsd |  357 
 .../modules/web/taglib/resources/javaee_5.xsd  | 2105 
 .../resources/javaee_web_services_client_1_2.xsd   |  588 ++
 .../web/taglib/resources/web-jsptaglibrary_1_1.dtd |  231 +++
 .../web/taglib/resources/web-jsptaglibrary_1_2.dtd |  502 +
 .../web/taglib/resources/web-jsptaglibrary_2_0.xsd | 1022 ++
 .../web/taglib/resources/web-jsptaglibrary_2_1.mdd |  769 +++
 .../web/taglib/resources/web-jsptaglibrary_2_1.xsd | 1153 +++
 .../netbeans/modules/web/taglib/resources/xml.xsd  |  334 
 15 files changed, 8698 insertions(+), 336 deletions(-)
 delete mode 100644 web.core/external/binaries-list
 delete mode 100644 web.core/external/glassfish-license.txt
 delete mode 100644 web.core/external/w3c-license.txt
 create mode 100644 
web.core/src/org/netbeans/modules/web/taglib/resources/j2ee_1_4.xsd
 create mode 100644 
web.core/src/org/netbeans/modules/web/taglib/resources/j2ee_web_services_client_1_1.xsd
 create mode 100644 
web.core/src/org/netbeans/modules/web/taglib/resources/javaee_5.xsd
 create mode 100644 
web.core/src/org/netbeans/modules/web/taglib/resources/javaee_web_services_client_1_2.xsd
 create mode 100644 
web.core/src/org/netbeans/modules/web/taglib/resources/web-jsptaglibrary_1_1.dtd
 create mode 100644 
web.core/src/org/netbeans/modules/web/taglib/resources/web-jsptaglibrary_1_2.dtd
 create mode 100644 
web.core/src/org/netbeans/modules/web/taglib/resources/web-jsptaglibrary_2_0.xsd
 create mode 100644 
web.core/src/org/netbeans/modules/web/taglib/resources/web-jsptaglibrary_2_1.mdd
 create mode 100644 
web.core/src/org/netbeans/modules/web/taglib/resources/web-jsptaglibrary_2_1.xsd
 create mode 100644 
web.core/src/org/netbeans/modules/web/taglib/resources/xml.xsd


-
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 (b3cde61 -> 208af3c)

2018-08-28 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 b3cde61  Merge pull request #812 from rtaneja1/rtaneja/netbeans-803
 add f45cce4  [NETBEANS-1074] Module Review libs.amazon
 add 208af3c  Merge pull request #785 from 
arusinha/module-review-libs.amazon

No new revisions were added by this update.

Summary of changes:
 .../external/aws-java-sdk-1.2.1-license.txt| 297 ++---
 libs.amazon/external/aws-java-sdk-1.2.1-notice.txt |  14 +
 libs.amazon/external/binaries-list |  26 +-
 libs.amazon/external/commons-codec-1.3-license.txt |   5 +
 .../external/commons-codec-1.3-notice.txt  |   0
 .../external/commons-logging-1.1.1-license.txt |   5 +
 .../external/commons-logging-1.1.1-notice.txt  |   9 +
 libs.amazon/external/httpclient-4.1.1-license.txt  |   5 +
 libs.amazon/external/httpclient-4.1.1-notice.txt   |   8 +
 libs.amazon/external/httpcore-4.1-license.txt  |   5 +
 libs.amazon/external/httpcore-4.1-notice.txt   |   5 +
 11 files changed, 284 insertions(+), 95 deletions(-)
 create mode 100644 libs.amazon/external/aws-java-sdk-1.2.1-notice.txt
 copy {ide/o.apache.commons.codec => 
libs.amazon}/external/commons-codec-1.3-notice.txt (100%)
 create mode 100644 libs.amazon/external/commons-logging-1.1.1-notice.txt
 create mode 100644 libs.amazon/external/httpclient-4.1.1-notice.txt
 create mode 100644 libs.amazon/external/httpcore-4.1-notice.txt


-
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-1166) Invalid license files in web.core module

2018-08-28 Thread JIRA


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

Matthias Bläsing resolved NETBEANS-1166.

Resolution: Fixed

> Invalid license files in web.core module
> 
>
> Key: NETBEANS-1166
> URL: https://issues.apache.org/jira/browse/NETBEANS-1166
> Project: NetBeans
>  Issue Type: Bug
>  Components: javaee - JSP, javaee - Web Project
>Reporter: Gilberto C Andrade
>Assignee: Matthias Bläsing
>Priority: Major
>  Labels: License, Review, pull-request-available
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> The following license files[1] , belonging to web.core module, are listed in 
> the rat-report.txt file and need a more experienced review:
> glassfish-license.txt
> w3c-license.txt
> [1] https://github.com/apache/incubator-netbeans/pull/733



--
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-1114) trojan found while installing Netbeans

2018-08-28 Thread Johannes Hoffmann (JIRA)


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

Johannes Hoffmann commented on NETBEANS-1114:
-

there you go

 

https://ufile.io/2nug4

> trojan found while installing Netbeans
> --
>
> Key: NETBEANS-1114
> URL: https://issues.apache.org/jira/browse/NETBEANS-1114
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - LaunchersCLI
>Affects Versions: 8.2
> Environment: Win10 64
>Reporter: Johannes Hoffmann
>Priority: Major
>
> found by Windows Defender during the installation
> Trojan:Script/Cloxer.D!cl
> file: 
> C:\Users\User\AppData\Local\Temp\tmpnb\var\cache\netigso\org.eclipse.osgi\bundles\54\1\bundlefile



--
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] 01/01: Merge pull request #812 from rtaneja1/rtaneja/netbeans-803

2018-08-28 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

commit b3cde61dfe9be8f67eb7470bd45d6c4b42317318
Merge: 9b57f07 3055661
Author: Geertjan Wielenga 
AuthorDate: Tue Aug 28 12:16:24 2018 +0100

Merge pull request #812 from rtaneja1/rtaneja/netbeans-803

[NETBEANS-803] Uptake nb-javac 11 jars for java tests runtime

 java/libs.javacapi/external/binaries-list  | 2 +-
 java/libs.javacimpl/external/binaries-list | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


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

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



[incubator-netbeans] branch master updated (9b57f07 -> b3cde61)

2018-08-28 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.git.


from 9b57f07  Merge pull request #790 from dukescript/CrossCompile
 add 3055661  [NETBEANS-803] Uptake nb-javac 11 jars for java tests runtime
 new b3cde61  Merge pull request #812 from rtaneja1/rtaneja/netbeans-803

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:
 java/libs.javacapi/external/binaries-list  | 2 +-
 java/libs.javacimpl/external/binaries-list | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


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

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



[incubator-netbeans] branch master updated (da0370b -> 9b57f07)

2018-08-28 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.git.


from da0370b  Fix .gitignore (#797)
 add 0a85572  Enable JDK matrix in Travis
 add edbe4e5  Only building platform on JDK11 and thus vanilla Javac isn't 
needed
 add 34f11b8  javax.annotation.Generated isn't available on JDK11. One 
NbBundleProcessor is enough
 add c6263ae  Supporting target older than 1.6 makes little sense these days
 add 8644c79  checkTopLevelWindow method is gone on JDK11. Attempting to 
use showWindowWithoutWarningBanner permission instead.
 add c09f0fd  There is no checkMemberAccess on JDK-11
 add 4325e6c  New methods in Instrumentation in JDK9 and newer
 add 7ab472c  openide.util.enumerations can only be built with JDK8 and 
older
 add 0123cc5  Avoid compilation of JavaFX sources
 add 3aae26e  Avoid compilation of desktop classes, if present
 add 0c2d889  Addressing jlahoda review comments: - by default use 1.7 
source and target levels as JDK12 will drop support for 1.6 - keep source 1.3 
and target 1.1 when building on JDK8 in the probe
 new 9b57f07  Merge pull request #790 from dukescript/CrossCompile

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:
 .gitignore |   1 +
 .travis.yml|  19 +-
 nbbuild/templates/common.xml   |   2 +-
 nbi/engine/build.xml   |   9 +-
 platform/applemenu/build.xml   |   3 +-
 .../src/org/netbeans/core/execution/SecMan.java|  14 +-
 .../core/netigso/NetigsoOSGiIsNotFriendTest.java   |   8 +-
 .../core/startup/ModuleListStartLevelTest.java |   7 +-
 platform/libs.javafx/build.xml |  25 +-
 platform/libs.javafx/external/binaries-list|   2 +-
 ...cense.txt => lib-javafx-13.03-beta-license.txt} |   8 +-
 .../netbinox/NetigsoOSGiIsNotFriendTest.java   |   6 +-
 platform/o.n.bootstrap/build.xml   |   2 +-
 .../o.n.bootstrap/src/java/lang/Module.java|   5 +-
 .../src/org/netbeans/NbInstrumentation.java|  12 +-
 .../src/org/netbeans/TopSecurityManager.java   |  16 +-
 platform/openide.util.enumerations/build.xml   |  15 +-
 .../nbproject/project.properties   |   1 +
 .../modules/openide/util/NbBundleProcessor.java| 382 -
 .../modules/openide/util/NbBundleProcessor.java|   1 -
 20 files changed, 103 insertions(+), 435 deletions(-)
 rename platform/libs.javafx/external/{openjfx-master-rt-8-license.txt => 
lib-javafx-13.03-beta-license.txt} (98%)
 copy 
ide/xml/test/qa-lib/src/org/netbeans/jellytools/modules/xml/actions/data/CascadeStyleSheet.css
 => platform/o.n.bootstrap/src/java/lang/Module.java (93%)
 delete mode 100644 
platform/openide.util.ui/src/org/netbeans/modules/openide/util/NbBundleProcessor.java


-
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] 01/01: Merge pull request #790 from dukescript/CrossCompile

2018-08-28 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

commit 9b57f071c3af779ffad4590fbb226874aa29c992
Merge: da0370b 0c2d889
Author: Geertjan Wielenga 
AuthorDate: Tue Aug 28 12:14:56 2018 +0100

Merge pull request #790 from dukescript/CrossCompile

Enable JDK matrix in Travis

 .gitignore |   1 +
 .travis.yml|  19 +-
 nbbuild/templates/common.xml   |   2 +-
 nbi/engine/build.xml   |   9 +-
 platform/applemenu/build.xml   |   3 +-
 .../src/org/netbeans/core/execution/SecMan.java|  14 +-
 .../core/netigso/NetigsoOSGiIsNotFriendTest.java   |   8 +-
 .../core/startup/ModuleListStartLevelTest.java |   7 +-
 platform/libs.javafx/build.xml |  25 +-
 platform/libs.javafx/external/binaries-list|   2 +-
 ...cense.txt => lib-javafx-13.03-beta-license.txt} |   8 +-
 .../netbinox/NetigsoOSGiIsNotFriendTest.java   |   6 +-
 platform/o.n.bootstrap/build.xml   |   2 +-
 platform/o.n.bootstrap/src/java/lang/Module.java   |  23 ++
 .../src/org/netbeans/NbInstrumentation.java|  12 +-
 .../src/org/netbeans/TopSecurityManager.java   |  16 +-
 platform/openide.util.enumerations/build.xml   |  15 +-
 .../nbproject/project.properties   |   1 +
 .../modules/openide/util/NbBundleProcessor.java| 382 -
 .../modules/openide/util/NbBundleProcessor.java|   1 -
 20 files changed, 123 insertions(+), 433 deletions(-)



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

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



[jira] [Commented] (NETBEANS-1114) trojan found while installing Netbeans

2018-08-28 Thread Johannes Hoffmann (JIRA)


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

Johannes Hoffmann commented on NETBEANS-1114:
-

shall i upload the installer somewhere so you can check if it is even possible 
to find the trojan by scanning it?

> trojan found while installing Netbeans
> --
>
> Key: NETBEANS-1114
> URL: https://issues.apache.org/jira/browse/NETBEANS-1114
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - LaunchersCLI
>Affects Versions: 8.2
> Environment: Win10 64
>Reporter: Johannes Hoffmann
>Priority: Major
>
> found by Windows Defender during the installation
> Trojan:Script/Cloxer.D!cl
> file: 
> C:\Users\User\AppData\Local\Temp\tmpnb\var\cache\netigso\org.eclipse.osgi\bundles\54\1\bundlefile



--
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-1114) trojan found while installing Netbeans

2018-08-28 Thread Johannes Hoffmann (JIRA)


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

Johannes Hoffmann commented on NETBEANS-1114:
-

found the installer, the output of openssl sha256 ./netbeans-8.2-windows.exe is:

SHA256(./netbeans-8.2-windows.exe)= 
c6df4acafb3b8583ec76a643b5df086583ad0bec86072166bc94c65c8731d837

> trojan found while installing Netbeans
> --
>
> Key: NETBEANS-1114
> URL: https://issues.apache.org/jira/browse/NETBEANS-1114
> Project: NetBeans
>  Issue Type: Bug
>  Components: platform - LaunchersCLI
>Affects Versions: 8.2
> Environment: Win10 64
>Reporter: Johannes Hoffmann
>Priority: Major
>
> found by Windows Defender during the installation
> Trojan:Script/Cloxer.D!cl
> file: 
> C:\Users\User\AppData\Local\Temp\tmpnb\var\cache\netigso\org.eclipse.osgi\bundles\54\1\bundlefile



--
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-803) nb-javac 11 upgrade in NetBeans

2018-08-28 Thread ASF GitHub Bot (JIRA)


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

ASF GitHub Bot updated NETBEANS-803:

Labels: NB-JDK11 pull-request-available  (was: NB-JDK11)

> nb-javac 11 upgrade in NetBeans 
> 
>
> Key: NETBEANS-803
> URL: https://issues.apache.org/jira/browse/NETBEANS-803
> Project: NetBeans
>  Issue Type: Task
>Reporter: Reema Taneja
>Assignee: Reema Taneja
>Priority: Major
>  Labels: NB-JDK11, pull-request-available
>
> Should cover below tasks in NetBeans - nb-javac 11 testing :
>  * Run tests for modules java.completion, java.editor, java.editor.base, 
> java.hints, java.source, java.source.base,lib.nbjavac
>  * Update libs.javacimpl and libs.javacapi jars, upload updated nb-javac jars
>  * Upload nb-javac module jars in update center



--
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-803) nb-javac 11 upgrade in NetBeans

2018-08-28 Thread Reema Taneja (JIRA)


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

Reema Taneja commented on NETBEANS-803:
---

Ran tests for:
java.source
java.source.base
java.editor
java.editor.base
java.completion
java.hints
lib.nbjavac

No new failures seen apart from 1, 2 above. These are being tracked using 
separate bugs.

> nb-javac 11 upgrade in NetBeans 
> 
>
> Key: NETBEANS-803
> URL: https://issues.apache.org/jira/browse/NETBEANS-803
> Project: NetBeans
>  Issue Type: Task
>Reporter: Reema Taneja
>Assignee: Reema Taneja
>Priority: Major
>  Labels: NB-JDK11
>
> Should cover below tasks in NetBeans - nb-javac 11 testing :
>  * Run tests for modules java.completion, java.editor, java.editor.base, 
> java.hints, java.source, java.source.base,lib.nbjavac
>  * Update libs.javacimpl and libs.javacapi jars, upload updated nb-javac jars
>  * Upload nb-javac module jars in update center



--
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 rtaneja/netbeans-803 deleted (was 3055661)

2018-08-28 Thread rtaneja
This is an automated email from the ASF dual-hosted git repository.

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


 was 3055661  [NETBEANS-803] Uptake nb-javac 11 jars for java tests runtime

This change permanently discards the following revisions:

 discard 3055661  [NETBEANS-803] Uptake nb-javac 11 jars for java tests runtime


-
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