Re: Netbeans IDE 21 and Mac

2024-04-26 Thread Antonio

Hi all,

"Java users on macOS 14 running on Apple silicon systems should skip 
macOS 14.4 and update directly to macOS 14.4.1"


https://blogs.oracle.com/java/post/java-on-macos-14-4

Long story short: macOS 14.4 incorrectly assumes that the JVM Ahead of 
Time compiler is a threat that tries to access protected memory regions, 
and stops the JVM.


Cheers,
Antonio



On 25/4/24 17:46, Brian Allison (ISSRS) wrote:

Problem resolved.  Updated to 14.4.1 and used the community installer.




On Apr 25, 2024, at 3:13 AM, Neil C Smith  wrote:

On Thu, 25 Apr 2024 at 10:06, David Gradwell  wrote:

I have NetBeans 21 running well on Mac OS Sonoma 14.4.1 (23E224) on the M1 chip.


Yes, definitely make sure it's 14.4.1!


This was installed from the standard distribution.  Choose the .dmg.  No need 
for anything special, just use the installer.  The .dmg files are, I think, 
properly signed for the Apple verification system.


There is no .dmg.  The macOS installer is a .pkg file, and is signed
and notarized.  There are also the community installers -
https://netbeans.apache.org/front/main/download/nb21/#_community_installers
which include a localised JDK 21 signed and notarized as part of the
IDE bundle.  If you're still having trouble, try the community
installer.

Best wishes,

Neil



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

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



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

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



Re: NetBeans integrated terminal

2024-04-02 Thread Antonio

Hi Pavel,

Some answers below.

On 2/4/24 22:36, PavelTurk wrote:

Hello all.

Could anyone explain how it is possible to run native application, for 
example, midnight commander in NB terminal?


NetBeans uses a pure-Java terminal emulator. This is spread in different 
modules, the low-level module with support for terminal emulation is the 
"ide/lib.terminalemulator" module. Here's a pointer to get you started:


https://github.com/apache/netbeans/blob/905ff7ef8344e372318751f6e93082a35da3b87f/ide/lib.terminalemulator/src/org/netbeans/lib/terminalemulator/Term.java


I mean NB is a java application and as I understand it uses swing 
library for UI. And how  was native application made

to work inside java application with swing? What is the magic here?


As explained by Thomas Wolf, you can launch any operating system process 
(say midnight commander) using the Java's ProcessBuilder class (NetBeans 
also has ad-hoc process launching mechanisms that were in place before 
ProcessBuilder was invented, see [1]).


Once you launch an external process the modules 
"ide/lib.terminalemulator", "ide.terminalnb", "ide/dlight.terminal" and 
some others are responsible for painting the terminal emulator in Swing.


Hope this helps,
Antonio


[1]
https://bits.netbeans.org/dev/javadoc/org-netbeans-modules-extexecution-base/overview-summary.html




Best regards, Pavel

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

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



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

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



Re: Help understanding error message.

2023-10-20 Thread Antonio

Dear Ann,

I have tested your "index.html" file in a recent version of NetBeans and 
reproduced your problem. I regret having to say that you have found a 
bug in the "NetBeans Connector". I have filled issue #6601 (see [1]) for 
you.


In order to communicate with the Chrome web browser, NetBeans uses a 
"browser plugin" called the "NetBeans Connector" that is published in 
the Chrome Web Store (see [2]).


As you can see, this plugin has not been updated since 2015, two years 
before NetBeans was donated by Oracle to the Apache Software Foundation.


Since then, web browsers have evolved rapidly, and I suspect this 
"browser plugin" from 2015 doesn't work in recent versions of Chrome. We 
must review the source code of this "browser plugin" ([3]).


As an immediate aid, you may want to explore the so called "Chrome 
DevTools" (see https://developer.chrome.com/docs/devtools/ for more 
details and videos), that are installed by default and that allow you to 
inspect and modify the HTML DOM and to debug JavaScript within the 
browser itself. Note that modifying the HTML DOM in the browser itself 
does not allow you to save changes to disk.


Finally let me tell you, Ann, that I think the entire NetBeans Team 
envies your curiosity and desire to learn. Let us know if we can be of 
further help.


Our best wishes,
Antonio


[1]
https://github.com/apache/netbeans/issues/6601

[2]
https://chrome.google.com/webstore/detail/netbeans-connector/hafdlehgocfcodbgjnpecfajgkeejnaa

[3]
https://github.com/apache/netbeans/tree/master/webcommon/extbrowser.chrome/plugins

On 20/10/23 1:04, Ann Maybury wrote:

  i am 85 and have over 50 years experience in producing software.
For about 5 years, I have not tried though.

I want to find out if I can use javascript, html, css to create a 
browser program to process a whole bunch of images in an sophisticated 
directory structure.    When I try to run Netbeans (8 or 12) with the 
Chrome connector, I get an error dialog.   If /  I double click on the 
index.html I get an error dialog. As shown below and also attached./

image.png
/The program runs.   What can I do to gert rid of this?/


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

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


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

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



Re: [**EXTERNAL**] Re: Apache NetBeans and Apache Struts 1?

2023-10-11 Thread Antonio

Hi,

I recall NetBeans helping me out opening and modifying a Java 1.6 (!) 
J2EE (!) application with WebLogic a few years ago. At the moment it was 
the only IDE able to do so.


Nowadays it is still of great help opening a legacy application with 
Tomcat 9 and Java 8.


Who knows, maybe NetBeans is helping people maintaining legacy internal 
Struts 1 applications somewhere.


So the explanation is that things are usually kept unless there's a 
reason not to.


Cheers,
Antonio

On 10/10/23 20:09, Dill, Ryan wrote:
Only because I wanted to confirm if there was an explanation for it 
still being distributed first. 


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

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



Re: Getting javadoc to work for netbean modules

2023-07-25 Thread Antonio

Hi Juan,

## For Ant based NBP projects:

You should take a look at the "Tools/NetBeans Platforms..." in the 
NetBeans menu. That will show the NetBeans Platform Manager dialog.


In that dialog you can set the location of the NetBeans sources in the 
"Sources" tab. As in all Apache projects, NetBeans sources are always 
released as a zip file [1].


You also have a "Javadoc" tab to select a zip file with NetBeans 
Javadoc, but I'm afraid that we don't create a public .zip file with all 
Javadoc versions available at [2]. Anyway having the "Sources" tab in 
place should show good enough information.


## For Maven based NBP projects:

I think this should work as in all Maven projects, i.e., you have the 
option to download sources for any dependency: just right-click on it 
and choose "Download source". Again I don't think we build .zip files 
with Javadoc for NetBeans modules.


Hope this helps,
Antonio



[1]
https://netbeans.apache.org/download/

[2]
http://bits.netbeans.org/


On 25/7/23 6:03, Juan Algaba wrote:

Ant, but willing to move to maven if that helps the situation in any way.



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

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



Re: Getting javadoc to work for netbean modules

2023-07-21 Thread Antonio

Hola Juan,

So are you using Maven or using Ant to develop this plugin of yours?

Cheers,
Antonio

On 30/6/23 19:51, Juan Algaba wrote:


Hi, I'm developing a plugin using NB 17 and can't get javadoc to work 
for netbean module related classes,


Tried setting the javadoc to 
https://bits.netbeans.org/dev/javadoc/org-netbeans-modules-projectuiapi/ 
<https://bits.netbeans.org/dev/javadoc/org-netbeans-modules-projectuiapi/> when offered trough the dialog window, it didn't work and doesn't offer me to edit the url anymore, Where can I remove or edit the URL?


image.png

Tried setting the source jar, but still shows as compiled code
image.png

Tried "requesting the NetBeans API Documentation module" according to 
the following link, but I don't think those instructions are updated for 
modern netbeans
https://netbeans.apache.org/wiki/DevFaqGeneralWhereIsJavadoc.html 
<https://netbeans.apache.org/wiki/DevFaqGeneralWhereIsJavadoc.html>




--

- Juan Algaba



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

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



Re: Encountered problems whlie connecting to update center

2023-07-21 Thread Antonio

Hi,

The message is quite explicit: the JDK PKI stuff cannot validate the 
certificate of the update center. We may want to improve this message, 
though. In order to do so please forward us a complete stack trace.


Of course, the update center has a valid certificate (and certificate 
chain). What may be happening is that your system has a 
man-in-the-middle proxy that is hickjacking our valid certificates. This 
may happen if you have zScaler installed, for instance. In this 
situation there's nothing we can do from the NetBeans side: you should 
be talking to your system administrators to whitelist the NetBeans 
Update Center in your proxy.


Cheers,
Antonio

On 21/7/23 9:12, Vincent Shiu wrote:
I'm using Netbeans 17 and 18 currently,  but I encountered problem while 
I try to connect to update center since version 16. I got the following 
message from netbeans.


"Unable to connect to the NetBeans Distribution because of 
sun.security.validator.ValidatorException: PKIX path building failed: 
sun.security.provider.certpath.SunCertPathBuilderException: unable to 
find valid certification path to requested target"


I'm pretty sure it's not blocked by any firewall. I have to visit 
plug-in website and download plug-ins then install manually.


I have googled but found nothing useful to fix the problem.  Is there 
anyone know how to fix this?


Thanks and regards

Vincent


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

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



Re: Sorting it out?

2023-06-03 Thread Antonio

+1 to have this account removed.

It does not adhere to the code of conduct, and keeps on trying people to 
download malware or something.


Cheers,
Antonio

On 1/6/23 14:47, Scott Palmer wrote:

I’m convinced “Tim” is a bot. Either that or someone that is dealing with some 
mental health issues. (It sends unlikely but I can’t rule it out.)  I suggest 
the account be removed from the mailing list.


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

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



Re: Adding sqlite-jdbc to Services

2023-06-03 Thread Antonio

Hi,

Some comments below.

On 3/6/23 3:19, Arbol One wrote:

>
> I assumed that by adding the 'sqlite-jdbc-3.30.1.jar' as a [Services 
tab]: Databases > Driver would make the driver global and that my code 
would run just as if I had added it to the [Project tab]: MyApp > 
Libraries sub directory, but that is not the case.


Of course not. Projects (Ant Projects, Maven Projects, Gradle Projects 
etc.) have to specify their dependencies explicitly, so you can pack 
your project (or upload it to a git repository) and send it to a friend, 
or share with other people.


The "Services/Databases/Driver" area is just for your computer, and has 
nothing to do with projects. It's just an IDE tool that you can use to 
connect to a database and quickly run a query, for instance.


In your case, you can right click on 
"Services/Databases/Drivers/SQLite-JDBC" and select "Connect Using...". 
This will allow you to open a connection to a sqlite database on your 
computer and run/test SQL queries in a project-independent window (you 
can use the query tool even if you have no project open). This is an aid 
for the development of your project, so you can test SQL queries 
quickly, but cannot be shared with other people.


Cheers,
Antonio

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

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



Re: How to run a program in Netbeans 17 with the -D option

2023-04-20 Thread Antonio

See, for instance:

https://stackoverflow.com/questions/39820709/netbeans-8-1-java-how-to-add-command-line-arguments-when-you-want-to-run-java

It really depends on the kind of project you're using. For Maven or 
Gradle projects this is different.


Cheers,
Antonio

On 20/4/23 19:02, Peter Ivarsson wrote:
Hi I want to run my program in NetBeans with the -D option java -jar 
-Drasberry.camera.enabled=true Peter






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

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



Re: Template tutorial

2023-02-25 Thread Antonio

So you've dared to update the tutorial???

Very well done!! Way to go! Reviewed!

Thanks,
Antonio


On 23/2/23 23:04, Sean Carrick wrote:
Just as a quick follow-up, I updated the tutorial file on GitHub to 
reflect that it was pointing to the wrong modules. Once the team has a 
chance to review and merge my PR, the tutorial will be updated.




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

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



Re: C/C++ Compiling and clangd integration

2022-06-01 Thread antonio

Hi,

"Tools->Options->C/C++->clangd" is not a feature of Apache NetBeans, are 
you using NB 8.X C/C++ plugin?


Cheers,
Antonio

El 1/6/22 a las 20:03, slipbits escribió:

NB 13
Win 7/10/11
gcc 11.3.0

I'm trying to use NB as a C/C++ IDE. Some issues:

 1. I can't compile. Properties->Compile Commands = "g++.exe -c
-dumpdir ..\obj\ -std=c++17 -o ..\obj\", but Run->Compile File is
'grayed' and can't be used. I've also tried linux separators (/) and
amisture of both, C:\cygwin/ ... . I can't seem to get this right.
What am I doing wrong?
 2. I am using clangd (Tools->Options->C/C++->clangd Location) but when
I double-click on a underscored variable name (ab_cd), only the
first part (ab) is highlighted. Any reason that the syntax of a
variable is not recognized?
 3. Highlighting a function name and then selecting Find in Projects
fails to find the function (or variable) . Is this something that NB
14 will fix?

I hope there is something that I can do to at least compile, and then 
build, my files. I've tried several versions of the compile command, all 
failing. I don't know what else to do.


art



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

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



Re: Kotlin Support and ideas

2022-04-24 Thread antonio

Hi Moacir,

Some comments/answers below.

El 24/4/22 a las 6:12, Moacir da Roza escribió:
As you can see, i'm using *kotlin.tmLanguage.json* from module *Kotlin 
Editor*, now i have beuty syntax highlighting.




Great job!


Now we have two problems:
*1-* If i use a Language Server i have an editor working very good with 
highlighting, autocomplete, some hints, but lacking some features like 
the History tab, and Show Line Numbers, it's not possible to fix imports 
etc.


*2- *If you don't use Language Server, the internal module *Kotlin 
Editor* is used, and i have History Tab, and Line Numbers, but with no 
autocomplete.



As far as I can tell the curent ide/lsp.client overrides any other 
feature registered for the given mime/type.


This is, if you use LSP then the features (fonts/colors, for instance) 
registered in internal module "Kotlin Editor" are discarded.


I think it would be a nice thing to have if "ide/lsp.client" could be 
tuned to select the features one wants from LSP (for instance, semantic 
highlighting but not history, etc.).





My question is:
*1-* What is the current status of kotlin support in netbeans? I would 
like to help.

*2-* Do you plan to use the plugin donated by JetBrains?


It seems nobody is really interested in porting the plugin donated by 
JetBrains, can't tell how good the plugin is.


You may want to take a look at the donation and improve it, though. PRs 
are welcome.


Cheers,
Antonio




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

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



Re: [C/C++][NB13] Netbeans hangs parsing project

2022-04-15 Thread Antonio

Hi,

So what's your setup? Windows with a remote Linux build server?

Thanks,
Antonio

El 15/4/22 a las 10:38, Graham Horner escribió:
For me, the only use-case that makes sense.  Given it's a bad idea to 
build inside a git repo (IIRC gcc actually gives you a warning) the 
build artifacts should be only on the remote build server.  That means 
the Simple setup of the 8.2 plugin is preferred.


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

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



Re: [C/C++][NB13] Netbeans hangs parsing project

2022-04-14 Thread antonio

Hi Graham,

Well, that's good enough testing!

The fact is that you'll need to install "clangd", which is a language 
server (available at https://clangd.llvm.org/), different from plain 
"clang" which is a compiler.


Currently clangd does not support remote development (although you can 
still build on remote hosts). That's an interesting use-case we'll look 
at in the future.


Thanks for testing!

Cheers,
Antonio

El 14/4/22 a las 0:05, Graham Horner escribió:
For 'location of clangd' I chose /usr/bin/clang but I'm getting no code 
assistance.


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

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



Re: [C/C++][NB13] Netbeans hangs parsing project

2022-04-13 Thread Antonio
The fork does support remote building. That's the part of cnd from 8.2 
that could be ported. So please keep up the good testing!


Cheers,
Antonio

El 13/4/22 a las 17:00, Graham Horner escribió:
I built the 'basic' version of your fork and added cpplite. I can't make 
much use of it for my main project until you add remote building.  So 
please keep up the good work!


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

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



Re: [C/C++][NB13] Netbeans hangs parsing project

2022-04-13 Thread antonio
So you're using NetBeans 8.2 C/C++ modules. We don't support those 
Oracle binaries any longer.


You may want to give 
https://github.com/vieiro/netbeans/tree/feature/cnd-small-4 a spin, though.


Cheers,
Antonio

El 5/4/22 a las 19:13, Graham Horner escribió:
I'm not using cpplite under 11.2, so I don't have that folder. Can you 
point me to a description of the conf files - in the docs?


On 5/4/22 17:34, antonio wrote:

In windows, recursively copy the following folder

C:\Users\[YOUR_USER]\AppData\Roaming\NetBeans\11.X\config\Preferences\org\netbeans\modules\cpplite 



To the NetBeans 13 version:

C:\Users\[YOUR_USER]\AppData\Roaming\NetBeans\13\config\Preferences\org\netbeans\modules\cpplite 



You should recover your projects then. 


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

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



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

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



Re: [C/C++][NB13] Netbeans hangs parsing project

2022-04-05 Thread antonio

Hi,

Some comments below.

On 05/04/2022 16:39, Graham Horner wrote:

Hi

I've been using NB 11.2 for some C/C++ projects (Kodi and linux 
kernel).  For some reason, NB never completes the background scan to 
parse all the symbols but does parse some of them.  I thought I'd try 
NB13 to see if it got better.  It didn't.


First I couldn't open my projects, even after adding the C/C++ Lite 
plugin.  So back to the 8.2 C/C++ plugin.  Now I can open my projects 
and background scanning starts and runs for an hour or more then 
eventually stalls with the progress bar at 100%, CPU usage stuck at 100% 
and maybe some of those 'Parsing ' progress bars stuck as well.  I 
can't stop the background scanning from the GUI or even kill NB itself. 
Only logging out gets me back to a usable machine.


We're still working on Apache NetBeans C/C++.

Currently the most advanced branch is 
https://github.com/vieiro/netbeans/tree/feature/cnd-lsp-2 , with LSP 
(clangd) support. You're welcome to test it (but you'll have to build 
that branch yourself).


No debugger yet, though, but it's on its way at 
https://github.com/apache/netbeans/pull/3909 to the "cnd" branch.


In the future the most advanced branch would be 
https://github.com/apache/netbeans/tree/cnd (again you'll have to build 
the branch yourself).


If we are lucky we could have C/C++ in NB14 or NB15.



NB is running on Linux Mint 20.3 with 8GB RAM which goes up to 70% usage 
and 5GB swap (which is not touched). JVM is 11.0.14.1.


Apache NetBeans C/C++ will delegate many parsing/completion/semantic 
highlighting features to the clangd LSP server https://clangd.llvm.org/




Any pointers to how I can get NB 13 working at least as well as my 11.2 
and hopefully with full code assistance?


AFAIU, C/C++ Lite stores projects in NetBeans preferences system. You 
should copy the preferences from the previous NetBeans version to the 
new one.


In windows, recursively copy the following folder

C:\Users\[YOUR_USER]\AppData\Roaming\NetBeans\11.X\config\Preferences\org\netbeans\modules\cpplite

To the NetBeans 13 version:

C:\Users\[YOUR_USER]\AppData\Roaming\NetBeans\13\config\Preferences\org\netbeans\modules\cpplite

You should recover your projects then.

If you use Linux then I think the folder is in 
$HOME/.netbeans/config/preferences/org/netbeans/modules/cpplite (cannot 
check this right now).


HTH,
Antonio



TIA



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

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



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

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



Re: Project open hangs

2022-03-24 Thread antonio
D'oh, I missed the "getNextEvent" part in the thread! This is Swing 
waiting for next events, which is normal.


What was the behaviour of the IDE on this stack trace? Why do you say 
that "it hangs"?


Thanks,
Antonio

El 23/3/22 a las 20:09, antonio escribió:

[2]
"AWT-EventQueue-0" #20 prio=6 os_prio=15 cpu=5912.93ms elapsed=139.99s 
tid=0x00082c06c800 nid=0x36285 waiting on condition 
[0x7fffddfdd000]

    java.lang.Thread.State: WAITING (parking)
 at jdk.internal.misc.Unsafe.park(java.base@11.0.14/Native Method)
 - parking to wait for  <0x0010019c3660> (a 
java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
 at 
java.util.concurrent.locks.LockSupport.park(java.base@11.0.14/LockSupport.java:194) 

 at 
java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(java.base@11.0.14/AbstractQueuedSynchronizer.java:2081) 

 at 
java.awt.EventQueue.getNextEvent(java.desktop@11.0.14/EventQueue.java:566)


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

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



Re: Project open hangs

2022-03-23 Thread antonio



This looks like a JDK bug.

If you invoke javax.swing.JFileChooser.showOpenDialog you don't expect 
the thread (invoking JDK classes, not Netbeans' classes) to get stuck in 
a "WAITING" (parking) condition, I think. [2]


It seems people is reporting similar hangs in different applications 
[1], with similar JDKs (java.base@11.0.14).


Any chances to upgrade your JDK?

Cheers,
Antonio

[1]
IntelliJ Idea
https://intellij-support.jetbrains.com/hc/en-us/community/posts/4419533666962-Remote-Development-max-out-CPU-Need-server-reboot-to-close-all-threads

NSA ghidra.
https://github.com/NationalSecurityAgency/ghidra/issues/3916

[2]
"AWT-EventQueue-0" #20 prio=6 os_prio=15 cpu=5912.93ms elapsed=139.99s 
tid=0x00082c06c800 nid=0x36285 waiting on condition 
[0x7fffddfdd000]

   java.lang.Thread.State: WAITING (parking)
at jdk.internal.misc.Unsafe.park(java.base@11.0.14/Native Method)
	- parking to wait for  <0x0010019c3660> (a 
java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
	at 
java.util.concurrent.locks.LockSupport.park(java.base@11.0.14/LockSupport.java:194)
	at 
java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(java.base@11.0.14/AbstractQueuedSynchronizer.java:2081)
	at 
java.awt.EventQueue.getNextEvent(java.desktop@11.0.14/EventQueue.java:566)
	at 
java.awt.EventDispatchThread.pumpOneEventForFilters(java.desktop@11.0.14/EventDispatchThread.java:190)
	at 
java.awt.EventDispatchThread.pumpEventsForFilter(java.desktop@11.0.14/EventDispatchThread.java:124)
	at 
java.awt.EventDispatchThread.pumpEventsForFilter(java.desktop@11.0.14/EventDispatchThread.java:117)
	at 
java.awt.WaitDispatchSupport$2.run(java.desktop@11.0.14/WaitDispatchSupport.java:190)
	at 
java.awt.WaitDispatchSupport$4.run(java.desktop@11.0.14/WaitDispatchSupport.java:235)
	at 
java.awt.WaitDispatchSupport$4.run(java.desktop@11.0.14/WaitDispatchSupport.java:233)
	at java.security.AccessController.doPrivileged(java.base@11.0.14/Native 
Method)
	at 
java.awt.WaitDispatchSupport.enter(java.desktop@11.0.14/WaitDispatchSupport.java:233)

at java.awt.Dialog.show(java.desktop@11.0.14/Dialog.java:1070)
	at 
javax.swing.JFileChooser.showDialog(java.desktop@11.0.14/JFileChooser.java:769)
	at 
javax.swing.JFileChooser.showOpenDialog(java.desktop@11.0.14/JFileChooser.java:666)



El 23/3/22 a las 13:41, Jürgen Weber escribió:

I append the thread dump.

Am So., 20. März 2022 um 10:26 Uhr schrieb antonio :


Tips:

- "jps" prints the process ids of running Java programs.
- "jstack pid" dumps the stack trace of the give pid.

The stack trace will print deadlocks, if any.

Hope this helps,
Antonio

El 19/3/22 a las 20:29, Jürgen Weber escribió:

Any tips?


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

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



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

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


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

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



Re: Project open hangs

2022-03-20 Thread antonio

Tips:

- "jps" prints the process ids of running Java programs.
- "jstack pid" dumps the stack trace of the give pid.

The stack trace will print deadlocks, if any.

Hope this helps,
Antonio

El 19/3/22 a las 20:29, Jürgen Weber escribió:

Any tips?


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

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



Re: How to create JDialog derived class using Apache Netbeans ID 13

2022-03-20 Thread antonio

Hi Zulfi,

You can take a look at the following tutorials:

https://docs.oracle.com/javase/tutorial/uiswing/components/dialog.html
https://netbeans.apache.org/kb/docs/java/gui-functionality.html

Hope this helps,
Antonio

El 19/3/22 a las 0:30, Zulfi Khan escribió:
How to create SampleDialog class derived from JDialog implemnting 
ActionListener


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

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



Re: NB & Eclipse about jar files

2022-03-05 Thread antonio
jar files are just zip files with another extension. You can see their 
contents using any tool that is able to open zip files.


NetBeans has no problems opening any jar file, be it produced by Eclipse 
or whatever.


Cheers,
Antonio

El 4/3/22 a las 17:15, Amn Ojee Uw escribió:
changed my developing platform to NetBeans 12.x from Eclipse. I have 
realized that the jar files produced by Eclipse are not desirable by  NB 
12.x.


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

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



Re: Using Quick Search API in Standalone Swing Apps?

2022-03-04 Thread antonio
If the Quick Search API depends on TopComponents and Master File System 
then you have two options:


a) Bundle the dependencies in your standalone app.
b) Do not bundle the dependencies in your standalone app: modify the 
source code as you wish (following the Apache License) to replace the 
dependencies.


If you show us the source code we may give you some further help.

Cheers,
Antonio

On 03/03/2022 23:32, Tim Mullé wrote:

Hi,

Is it possible to use the Quick Search API in standalone Swing Apps?

We have a home grown IDE like interface (not using NB Platform) and we’d like 
to add a quick search feature ust like NetBeans has.

I took a look at the source code for the quick search module and it looks like 
it might be tied to the UI (TopComponents)
And rely on the XML file system for things like category name, keystroke, etc. 
I thought it used ServiceLoader but it directly reads the root virtual file 
system.

I didn’t see a way to provide those items externally since we don’t have the NB 
file system and our SearchProviders won’t be made via
The NetBeans wizards.


Just curious…

- Tim


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

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



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

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



Re: [no subject alternative dns name matching netbeans.apache.org found]

2022-02-19 Thread antonio

Hi Bruno,

Please don't cross-post to the mailing lists. This is considered rude.

I'm afraid we won't be able to help you setup your internet connection. 
You should contact your local internet provider for help.


Kind regards,
Antonio

El 19/2/22 a las 12:11, bruno.mo...@free.fr escribió:

I installed netbeans version 12.6 on windows (I had an older version on ubuntu 
which I couldn't update because like ubuntu it couldn't connect to the 
internet) and I ended up giving up to download the latest version under 
windows but I still have this same internet connection problem... but this 
latest version specifies the errors:
no subject alternative dns name matching netbeans.apache.org found.


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

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



Re: jar works on NB but not on debian console

2022-02-05 Thread antonio

Agreed!

It's adviseable to spend as much time in making precise questions as you 
expect people spending in answering them. Otherwise you may get no answer.


This tutorial may also be of help:

https://netbeans.apache.org/kb/docs/java/javase-intro.html

Cheers,
Antonio

El 5/2/22 a las 20:36, Mark A. Flacy escribió:

Greetings,


My idea is that you should start providing useful details in your 
questions to this list after you read normal java documentation.  Here's 
some help with the last bit:



https://docs.oracle.com/en/java/javase/17/docs/specs/man/java.html#standard-options-for-java 
<https://docs.oracle.com/en/java/javase/17/docs/specs/man/java.html#standard-options-for-java>



  * -jar /jarfile/

Executes a program encapsulated in a JAR file. The /jarfile/ argument is 
the name of a JAR file with a manifest that contains a line in the form 
Main-Class:/classname/ that defines the class with the public static 
void main(String[] args) method that serves as your application's 
starting point. When you use -jar, the specified JAR file is the source 
of all user classes, and other class path settings are ignored.




--

Mark A. Flacy

mfl...@verizon.net


On 2022 M02 5, Sat 12:53:05 CST Amn wrote:

 > In my Debian 11 machine I am trying to run the jar produced by Netbeans

 > 12.6 using Java 17+ on the terminal, but it does not run correctly. The

 > program just displays '>' as if waiting for an input. The program runs

 > find when I run it from Netbeans though!

 > The command I am using from the prompt is :

 > 'java -jar "[MyDevDir]/NetbeansWorkSpace/beep/dist/beep.jar"

 > Any ideas?

 >

 >

 > -

 > To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org

 > For additional commands, e-mail: users-h...@netbeans.apache.org

 >

 > For further information about the NetBeans mailing lists, visit:

 > https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists





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

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



Re: Where is my post?

2022-02-05 Thread antonio
Information about how to use our mailing lists is in [1] (including a 
link to the ezmlm manual). Other links that may be of help are RFC-1855 
and the Apache Code of Conduct [3].


I'm afraid we won't be able to help you find your own posts in your own 
inbox, though.


Hope this helps,
Antonio


[1]
https://netbeans.apache.org/community/mailing-lists.html

[2]
https://datatracker.ietf.org/doc/html/rfc1855

[3]
https://apache.org/foundation/policies/conduct.html

El 5/2/22 a las 12:43, Amn escribió:

However, I did not find the post in my inbox, assuming that it would
bounce back to me via this mailing-list. There have been no replies


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

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



Re: Matisse GUI builder bindings

2022-02-04 Thread antonio
The bindings library is GPL licensed and cannot be distributed with 
Apache NetBeans (Apache License). Bindings support was dropped in 2019, 
AFAIR.


There's https://github.com/emilianbold/nb-apache-form-binding you may 
want to try.


Cheers,
Antonio

El 4/2/22 a las 17:27, Jeremy Faden CS escribió:
I've recently upgraded to Netbeans 12.6 after working with Netbeans 8 
for years.  Everything is working smoothly, but I just noticed that any 
of my GUIs which used bindings before cannot be edited in the GUI 
builder and I see that when I make a new GUI, I no longer have the 
option to add bindings.  Is this no longer supported and will I need to 
rebuild all my old GUIs?


Thanks,

Jeremy



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

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



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

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



Re: Trouble with file access permission in a C++ projet

2022-01-27 Thread antonio

Hi,

As far as I know, in cpplite the "compile commands" are the exact 
command(s?) you want to use to compile your stuff.


Something like (*):

C:\cygwin64\bin\c++.exe -g -I\cygwin64\whatever\include myfile.c main.c 
another.c -o myfile


The "run command" would then be:

".\myfile"

And the "clean command" would be

"del myfile"

(Can't tell if you need to use double slashes in Windows, for instance 
".\\myfile" instead of ".\myfile", that's something you'll have to 
experiment yourself).


These are very basic commands, we'll have to wait until cnd is ready to 
merge to recover the Makefile projects.


Cheers,
Antonio

(*)
I don't know if cpplite admits multiple commands, like:

C:\cygwin64\bin\c++.exe -c -g myfile.c -o myfile.o
C:\cygwin64\bin\c++.exe -c -g b.c -o b.o
C:\cygwin64\bin\c++.exe myfile.o b.o -Lwhatever -o myfile



El 28/1/22 a las 0:47, slipbits escribió:

I tried to place the path to my compiler in
Windows->Files->->Properties->Editor->Compile 
Commands ["C:\cygwin64\bin\c++.exe"]

with no good effect.


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

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



Re: Trouble with file access permission in a C++ projet

2022-01-27 Thread antonio

Hi,

In my box CYGWIN\lib\gcc\x86_64-pc-cygwin\10\include\c++ is a directory, 
so of course NetBeans is not able to "execute" it.


It seems you're missing the path to the compiler you want to use. In my 
box this is "CYGWIN\bin\c++.exe".


Cheers,
Antonio

On 26/01/2022 22:18, slipbits wrote:

NB Diagnostic Message
     Exception in thread "main" java.io.IOException: Cannot run program 
"C:\cygwin64\lib\gcc\x86_64-pc-cygwin\11\include\c++": CreateProcess 
error=5, Access is denied


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

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



Re: [C/C++] Unable to install and use clangd protocol server

2022-01-18 Thread antonio

Hi,

NetBeans does indeed use ccls[1] or clangd[2] (with a d), not clang.

Both of them are LSP Servers for C/C++ (and more languages).

You can use these LSP Servers with some other editor (Vim, Emacs, 
VSCode, etc.).


We are trying to recover some of the previous NB<=8.2 C/C++ features, 
too. These will arrive into NetBeans in the future.


Cheers,
Antonio

[1]
https://github.com/MaskRay/ccls

[2]
https://clangd.llvm.org/

El 18/1/22 a las 20:29, slipbits escribió:
I think that NB should change to 'clangd' to 'clang' to clear up any 
confusion


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

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



Re: [C/C++] Unable to install and use clangd protocol server

2022-01-18 Thread antonio

Hi there,

The "clangd for Windows" does not have any "clangd-index-server.exe", 
nor "clangd-indexer.exe", just a "clangd.exe". You've probably 
downloaded the indexer, not the clangd.


Just unzip clangd zip file somewhere in a directory in your disk. If you 
have this directory in your PATH then NetBeans should find it for you. 
Otherwise you'll have to add it manually (say 
"C:\Users\whatever\clang\bin\clangd.exe).


Cheers,
Antonio



On 17/01/2022 22:17, slipbits wrote:
'm trying to host all my C/C++ projects on Netbeans (because I like NB) 
and am having some difficulty. NB tools->options->C/C++ requires either 
a ccls or clangd 
<https://github.com/clangd/clangd/releases/tag/13.0.0>protocol server. I 
downloaded clangd <https://github.com/clangd/clangd/releases/tag/13.0.0> 
for windows 
<https://github.com/clangd/clangd/releases/download/13.0.0/clangd-windows-13.0.0.zip> 
as a zip file and then extracted clangd-index-server-monitor.exe, 
clangd-index-server.exe. clangd-indexer.exe to my cygwin /bin directory. 
Then, in turn, I changed the C/C++ "clangd Location" to each of  the 
files (/bin/). In all cases I was then unable to modify my 
project file (below).


H



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

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



Re: Blank Terminal window on M1 Mac with Netbeans 12.5

2022-01-17 Thread antonio

Pretty cool!

The basic idea is to run the "buildall.sh" at [1], see where it fails 
(probably some #include's, etc.), fix it, build a binary and add the 
generated dylib? to the binary in the "external" directory.


Please let me know if you need help, or if you want me to install you a 
bitcoin miner in your brand new box.


Kind regards,
Antonio


[1]
https://github.com/apache/netbeans/tree/master/ide/dlight.nativeexecution/tools

[2]
https://github.com/apache/netbeans/blob/master/ide/dlight.nativeexecution/external/exechlp-1.0-license.txt


On 17/01/2022 17:15, Neil C Smith wrote:

I've just invested in an M1 mac mini for testing purposes so will also
try and have a look at this.


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

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



Re: Blank Terminal window on M1 Mac with Netbeans 12.5

2022-01-17 Thread antonio

Pretty cool!

The basic idea is to run the "buildall.sh" at [1], see where it fails 
(probably some #include's, etc.), build a binary and add the generated 
dylib? to the binary in the "external" directory.


Please let me know if you need help, or if you want me to install you a 
bitcoin miner in your brand new box.


Kind regards,
Antonio


[1]
https://github.com/apache/netbeans/tree/master/ide/dlight.nativeexecution/tools

[2]
https://github.com/apache/netbeans/blob/master/ide/dlight.nativeexecution/external/exechlp-1.0-license.txt


On 17/01/2022 17:15, Neil C Smith wrote:

I've just invested in an M1 mac mini for testing purposes so will also
try and have a look at this.


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

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



Re: Blank Terminal window on M1 Mac with Netbeans 12.5

2022-01-16 Thread antonio

Hi Tim,

Thanks for your report!

It seems we're not contemplating the new M1 Apple computers. Since not 
all of us have access to one of these, would you please add the 
following to this ticket?


a) The result of "uname -p" (this is what we call CPUTYPE in [1])
b) The result of "uname -n" (this is what we call HOSTNAME in [1])
c) The result of "uname -s" (this is what we call OS in [1]).
d) The result of "uname -a" (we use it elsewhere in [1]).
e) The result of "sysctl hw.cpu64bit_capable" (may require 'sudo', this 
is what we call BITNESS, I assume this is 64 bit).

f) The result of "hostinfo"

It would be great if we could compile "dlight.nativeexecution/tools" for 
the new M1 processors by running "build.sh" in [2] on one of these 
computers (I don't own one, though). This will probably require adding 
new #include's in different parts of the code. We'll talk to ASF Infra 
to see if we can have one of these to compile.


Thanks again,
Antonio


[1]
https://github.com/apache/netbeans/blob/master/ide/dlight.nativeexecution/release/bin/nativeexecution/hostinfo.sh

[2]
https://github.com/apache/netbeans/tree/master/ide/dlight.nativeexecution/tools


On 14/01/2022 19:46, Tim Mullé wrote:
I messed around some more and figured out the cause, but there are still 
some issues that are beyond me.


filed a ticket: https://issues.apache.org/jira/browse/NETBEANS-6391 
<https://issues.apache.org/jira/browse/NETBEANS-6391>



On Jan 14, 2022, at 7:58 AM, Tim Mullé <mailto:tmu...@gmail.com>> wrote:


Thanks, I wonder for the people who the terminals do work they are 
using Rosetta and a non-ARM(x86) based JDK install so the code is 
properly picking the platform.


I have Rosetta also, but since I’m using a native ARM JDK, it is not 
being run under Rosetta.


Just thinking out loud.

@Geertjan - Should I file a bug with the info I posted in this group?

Thanks again…


On Jan 13, 2022, at 7:23 PM, David Green <mailto:dgreen...@gmail.com>> wrote:


I used the MacOSX installer.   I do see the files in the
/Applications/NetBeans/Apache\ NetBeans\ 
12.6.app/Contents/Resources/NetBeans/netbeans/ide/bin/nativeexecution


and also don’t have any arm/m1 arch files.  There is also a 
hosting.sh file there which also does not have any ARM info/logic.


I have Rosetta installed although I strive to use native code when 
possible.


On Jan 13, 2022 at 5:27:42 PM, Tim Mullé <mailto:tmu...@gmail.com>> wrote:
I did more searching in my netbeans installation folder and found 
the list of files the Terminal was looking for, but I noticed that 
there is no ARM or AARCH files mentioned for any OS.


My `uname -a` reports: Darwin mars.fios-router.home 21.2.0 Darwin 
Kernel Version 21.2.0: Sun Nov 28 20:28:41 PST 2021; 
root:xnu-8019.61.5~1/RELEASE_ARM64_T6000 arm64


And I’m running a M1 native JDK from Temurin 17.0.1+12 and tried 
Azul 11.0.13+8 both arm ARM64 JDKs



more 
./ide/update_tracking/org-netbeans-modules-dlight-nativeexecution.xml
codename="org.netbeans.modules.dlight.nativeexecution">
   origin="installer" specification_version="1.53.0.1">
   name="bin/nativeexecution/Linux-sparc_64/killall"/>
   name="bin/nativeexecution/Linux-sparc_64/process_start"/>
   name="bin/nativeexecution/Linux-sparc_64/pty"/>
   name="bin/nativeexecution/Linux-sparc_64/pty_open"/>
   name="bin/nativeexecution/Linux-sparc_64/sigqueue"/>
   name="bin/nativeexecution/Linux-sparc_64/stat"/>
   name="bin/nativeexecution/Linux-sparc_64/unbuffer.so"/>
   name="bin/nativeexecution/Linux-x86/killall"/>
   name="bin/nativeexecution/Linux-x86/process_start"/>

   
   name="bin/nativeexecution/Linux-x86/pty_open"/>
   name="bin/nativeexecution/Linux-x86/sigqueue"/>

   
   name="bin/nativeexecution/Linux-x86/unbuffer.so"/>
   name="bin/nativeexecution/Linux-x86_64/killall"/>
   name="bin/nativeexecution/Linux-x86_64/process_start"/>
   name="bin/nativeexecution/Linux-x86_64/pty"/>
   name="bin/nativeexecution/Linux-x86_64/pty_open"/>
   name="bin/nativeexecution/Linux-x86_64/sigqueue"/>
   name="bin/nativeexecution/Linux-x86_64/stat"/>
   name="bin/nativeexecution/Linux-x86_64/unbuffer.so"/>
   name="bin/nativeexecution/MacOSX-x86/killall"/>
   name="bin/nativeexecution/MacOSX-x86/process_start"/>

   
   name="bin/nativeexecution/MacOSX-x86/pty_open"/>
   name="bin/nativeexecution/MacOSX-x86/stat"/>
   name="bin/nativeexecution/MacOSX-x86/unbuffer.dylib"/>
   name="bin/nati

Re: Log4j 1.x Vulnerabilities

2022-01-04 Thread antonio

Hi all,

Quoting from the CVE details:

"to remotely execute arbitrary code when combined with a deserialization 
gadget when listening to untrusted network traffic for log data"


Apache NetBeans does not "listen to untrusted network traffic for log 
data", so it's not vulnerable.


Kind regards,
Antonio

El 4/1/22 a las 16:24, Humphrey Clerx escribió:
And there is a security vulnerability present in log4j 1.x, 
CVE-2019-17571 <https://www.cvedetails.com/cve/CVE-2019-17571/> that 
might need addressing in NetBeans. This is stated on the following page:


  - https://logging.apache.org/log4j/1.2/ 
<https://logging.apache.org/log4j/1.2/>




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

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



Re: Netbeans 12.6 C/;C++

2022-01-03 Thread antonio

Hi,

There's File/New Project/Lightweight C/C++ Project

Kind regards,
Antonio

El 3/1/22 a las 18:43, dms489 escribió:
I have Netbeans 12.6 running to develop Java programs. I also need to 
develop C/C++. In the good old days of Netbeans 8-ish, there was a clear 
set of directions for adding C/C++. I can't find such info for the newer 
Netbeans IDE's.


Help, please.

DMS

--
David Smith
david.sm...@dms489.com <mailto:david.sm...@dms489.com>


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

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



Re: Visual Library 2.0 examples

2021-05-13 Thread antonio

What about this one?

http://web.archive.org/web/20200429142209/http://plugins.netbeans.org/plugin/40291/visual-library-samples

Cheers,
Antonio

On 13/05/2021 9:28, Jan Hubený wrote:

Hi,

We use the Netbeans Visual Library 
(https://netbeans.apache.org/tutorials/nbm-visual_library.html 
<https://netbeans.apache.org/tutorials/nbm-visual_library.html>) in our 
projects. In the past, there exists an netbeans project which can be 
freely downloaded 
(http://plugins.netbeans.org/plugin/40291/visual-library-samples 
<http://plugins.netbeans.org/plugin/40291/visual-library-samples>), with 
examples of how to use all the visual components of the Netbeans Visual 
Library.Does anyone know where to download this project now?


Thank you,

Jan Hubený



***D I S C L A I M E R ***



/_Personal data protection according to Regulation (EU) 2016/679 of the 
European Parliament and of the Council of 27 April 2016 on the 
protection of natural persons with regard to the processing of personal 
data and on the free movement of such data (General Data Protection 
Regulation) _/


l communication with this e-mail address (especially by sending e-mails 
and replies) you hereby agree with processing of yours personal data 
especially in the scope of data contained in email and it`s attachments. 
Data subject has the following rights: (i) to withdraw consent with 
personal data processing , (ii) to ask SOMA company for information 
which personal data are being processed, (iii) to ask for explanation 
regarding processed personal data, (iv) to ask for access to personal 
data and right of rectification of inaccurate personal data, (v) to 
demand erasure of personal data, (iv) in case of doubts regarding 
compliance with GDPR regulation right to raise objections in front of 
SOMA company, court or the Office for personal data protection.


The SOMA company processes especially personal data of SOMA company`s 
business partners. The SOMA company hereby politely asks it`s business 
partners to not to send to SOMA company by e-mails or by any other means 
personal data of any third persons (for instance business partners` 
employees, participants of agreements, contracts or other legal 
relationships etc.), these personal data will not be processed by SOMA 
company and will be immediately erased. If you are not a business 
partner of SOMA company and you are sending to SOMA company any personal 
data in any kind of form (for instance by e-mail, data mailbox or by 
letter etc.) you hereby agree with processing of your personal data in 
the scope of personal data sent by you and you have right described in 
point (i) to (vi) hereof.


The SOMA company is processing personal data especially due to the 
following purposes: (a) processing is necessary for the performance of a 
contract to which the data subject is party or in order to take steps at 
the request of the data subject prior to entering into a contract, or 
(b) processing is necessary for compliance with a legal obligation to 
which the controller is subject, or (c) processing is necessary in order 
to protect the vital interests of the data subject or of another natural 
person; or (d) processing is necessary for the purposes of the 
legitimate interests pursued by the controller or by a third party.


Data subject is obliged to announce the SOMA company any changes of 
personal data of the data subject.


/_Confidentiality _/

The information contained in this e-mail is confidential and is intended 
solely for the use of subject to whom it is addressed and others 
authorized to receive it. The text or attachments may contain 
confidential information, privileged information or information 
considered by the law firm as the trade secret. If you are not the 
intended recipient you are hereby notified that any disclosure, copying, 
distribution or taking any action in reliance on the contents of this 
information is strictly prohibited and may be unlawful. The law firm is 
neither liable for the contents, nor for the proper, complete and timely 
transmission of the information contained in this communication. By 
usage of e-mail communication the recipient of this e-mail agree this 
kind of communication with law firm and his potential risk and agree 
with unsecured communication. For avoidance of any doubt law firm pays 
attention to the fact that this e-mail including its attachments could 
not be in any case con sidered as offer for conclusion of agreement 
pursuant to § 1731 of act no 89/2012 Coll. as amended, neither 
confirmation letter pursuant to the § 1757 of act no 89/2012 Coll. as 
amended.


/Our full GDPR policy may be found *here 
<http://www.soma-eng.com/en/gdpr>* /


/Překlad výše uvedeného textu (Ochrana osobních údajů dle nařízení 
Evropského parlamentu a Rady EU a Důvěrnost informací) nal

Re: Deployment Tutorial Source Files

2021-04-22 Thread antonio

Hi all,

Maybe we could scan all tutorial pages and replace the links that end 
with ".zip" ".tgz" or similar things with direct links to the web 
archive, so people can download them.


Many of these samples have unkown licenses, so I don't think we can 
include these directly in the website. Also maybe we end up with many 
megabytes!


Cheers,
Antonio


El 22/4/21 a las 15:17, Sean Carrick escribió:

Just as a quick aside:

Whenever you are looking at tutorials or StackOverflow answers regarding 
Java, a lot of the links will be to either netbeans.org, Project Kenai, 
or java.net. So, what you should always do is:


 1. Rright-click the link
 2. Copy the address
 3. Go to The Wayback Machine at web.archive.org <http://web.archive.org>
 4. Paste the link into the search bar

I have found much help with broken links this way and it is a huge 
time-saver! The Wayback Machine was an ingenious idea and I am extremely 
grateful to whoever came up with it!!


-SC


On 4/22/21 12:40 AM, antonio wrote:

You are welcome!

If this is linked from a tutorial you may want:

a) To update the link in the tutorial page (you can modify it in 
github using the "edit" button).


b) To upload the sample somewhere (github? gitlab?) and then send a 
link to the repository.


By doing so the next person will have it easy to find the samples.

Cheers,
Antonio

El 21/4/21 a las 23:31, Peter escribió:

Perfect! Thank you.

On 2021/04/21 21:00:55, antonio  wrote:

Yep

http://web.archive.org/web/2012060100*/https://netbeans.org/projects/samples/downloads/download/Samples%2FJava%2FDeploymentTutorial.zip 



El 21/4/21 a las 20:16, Peter Ream escribió:

I am looking at the netbeans website “Java SE Learning Trail”,
specifically “Packaging and Distributing Java Desktop Application.”
There is a reference to “Deployment Tutorial Source Files” :

https://netbeans.org/projects/samples/downloads/download/Samples%252FJava%252FDeploymentTutorial.zip 

<https://netbeans.org/projects/samples/downloads/download/Samples%252FJava%252FDeploymentTutorial.zip> 



Does this zip file exist somewhere since decommissioning netbeans.org
<http://netbeans.org>?

Thank you.



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

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




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

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



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

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



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

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



Re: Deployment Tutorial Source Files

2021-04-21 Thread antonio

You are welcome!

If this is linked from a tutorial you may want:

a) To update the link in the tutorial page (you can modify it in github 
using the "edit" button).


b) To upload the sample somewhere (github? gitlab?) and then send a link 
to the repository.


By doing so the next person will have it easy to find the samples.

Cheers,
Antonio

El 21/4/21 a las 23:31, Peter escribió:

Perfect! Thank you.

On 2021/04/21 21:00:55, antonio  wrote:

Yep

http://web.archive.org/web/2012060100*/https://netbeans.org/projects/samples/downloads/download/Samples%2FJava%2FDeploymentTutorial.zip

El 21/4/21 a las 20:16, Peter Ream escribió:

I am looking at the netbeans website “Java SE Learning Trail”,
specifically “Packaging and Distributing Java Desktop Application.”
There is a reference to “Deployment Tutorial Source Files” :

https://netbeans.org/projects/samples/downloads/download/Samples%252FJava%252FDeploymentTutorial.zip
<https://netbeans.org/projects/samples/downloads/download/Samples%252FJava%252FDeploymentTutorial.zip>

Does this zip file exist somewhere since decommissioning netbeans.org
<http://netbeans.org>?

Thank you.



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

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




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

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



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

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



Re: Deployment Tutorial Source Files

2021-04-21 Thread antonio

Yep

http://web.archive.org/web/2012060100*/https://netbeans.org/projects/samples/downloads/download/Samples%2FJava%2FDeploymentTutorial.zip

El 21/4/21 a las 20:16, Peter Ream escribió:
I am looking at the netbeans website “Java SE Learning Trail”, 
specifically “Packaging and Distributing Java Desktop Application.” 
There is a reference to “Deployment Tutorial Source Files” :


https://netbeans.org/projects/samples/downloads/download/Samples%252FJava%252FDeploymentTutorial.zip 



Does this zip file exist somewhere since decommissioning netbeans.org 
?


Thank you.



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

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



Re: Netbeans plugins site is down rendering netbeans useless

2021-04-21 Thread antonio

Hi all,

This message is in violation of the Apache Software Foundation Code of 
Conduct.


We expect participants in our community to meet these standards in all 
their interactions and to help others to do so as well.


Thanks,
Antonio


[1]
https://www.apache.org/foundation/policies/conduct

On 21/04/2021 11:01, Som Lima wrote:

I don't know why you bother responding to this kind of gutter criticism.

It is just  the way these Indians try to   impose their "expertise" in IT.

By finding faults. Solutions which is beyond their control.



On Wed, 21 Apr 2021, 09:43 Geertjan Wielenga, 
 wrote:


You need to move away from 11.1.

When you do that, this problem will be solved. Ideally, use 12.3,
the latest release.

Gj

On Wed, 21 Apr 2021 at 10:36, Pradyut Bhattacharya
mailto:prad...@yandex.com>> wrote:

I'm using Netbeans 11.1 and need to a open a JS file in my project.

I need to install the Oracle JS Parser for Netbeans which I
cannot do so because the site - plugins.netbeans.org
<http://plugins.netbeans.org> is down.

I'm getting this error - "Networking problem in

http://plugins.netbeans.org/nbpluginportal/files/nbms/1552395301_org-netbeans-libs-oracle-jsparser.nbm

<http://plugins.netbeans.org/nbpluginportal/files/nbms/1552395301_org-netbeans-libs-oracle-jsparser.nbm>
 "

Is there anyway I can install it manually otherwise I cannot
resume work with Netbeans rendering it useless.
Regards,
Pradyut Bhattacharya


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
<mailto:users-unsubscr...@netbeans.apache.org>
For additional commands, e-mail: users-h...@netbeans.apache.org
<mailto:users-h...@netbeans.apache.org>

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



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

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



Re: Having NetBeans form data hit Java derby DB automagically

2021-03-10 Thread antonio

Hi all,

Maybe you want to follow these tutorials

https://netbeans.apache.org/tutorials/nbm-crud.html (for Platform apps)
https://netbeans.apache.org/kb/docs/javaee/ecommerce/entity-session.html 
(Java EE version)


We'd appreciate new screenshots and a review :-).

Kind regards,
Antonio

On 10/03/2021 9:50, Luff,Chris wrote:

Lot’s of scenarios and plenty of options. Usually, you would write a set of 
interfaces to the data structure of the database that encapsulate update, 
insert and delete methods.


On 10 Mar 2021, at 02:02, Amy Wolf  wrote:

I have a front end form and have set up a Java derby db with a table & columns.

When the GUI is filled out, how does the record hit the db in the right fields? 
Is there Java code for this?

Thanks!

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

For further information about the NetBeans mailing lists, visit:
https://nam10.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcwiki.apache.org%2Fconfluence%2Fdisplay%2FNETBEANS%2FMailing%2Blistsdata=04%7C01%7CChris.Luff%40cerner.com%7Ce97dabb359d14074eb4f08d8e3689b1d%7Cfbc493a80d244454a815f4ca58e8c09d%7C0%7C0%7C637509385849726148%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C2000sdata=XHTu7XDxhUcdQZNnpjUYe0L151fysVb4ayJBosVnW3s%3Dreserved=0





CONFIDENTIALITY NOTICE This message and any included attachments are from 
Cerner Corporation and are intended only for the addressee. The information 
contained in this message is confidential and may constitute inside or 
non-public information under international, federal, or state securities laws. 
Unauthorized forwarding, printing, copying, distribution, or use of such 
information is strictly prohibited and may be unlawful. If you are not the 
addressee, please promptly delete this message and notify the sender of the 
delivery error by e-mail or you may call Cerner's corporate offices in Kansas 
City, Missouri, U.S.A at (+1) (816)221-1024. Cerner Limited, Registered in 
England no 2519305, Registered Office 37 North Wharf Road, London W2 1AF.

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

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



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

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



Re: NetBeans to MySQL Connection

2021-03-08 Thread antonio

Hi Amy,

Thanks for pointing this problem with the tutorials.

If your students want to contribute to an open source project by 
clarifying the documentation then proceed as follows:


a) Go to the page in question 
https://netbeans.apache.org//kb/docs/ide/mysql.html
b) Go to the end of the page, where the "See this page in github" link 
is, click on the link.
c) Once in the github page, if your students have a github.com account, 
they can click on the edit button (a pencil) and write the corrections 
there. Then proceed with a pull request.


Geertjan did a YouTube video explaining the details here 
https://www.youtube.com/embed/0ovc902VWMQ?rel=0


Kind regards,
Antonio

On 08/03/2021 22:23, Amy Wolf wrote:

Thanks!

On 2021/03/08 21:13:16, Javier Ortiz Bultron  wrote:

I believe that's under the MySQL workbench now:
https://www.mysql.com/products/workbench/admin/




On Mon, Mar 8, 2021 at 2:58 PM Amy Wolf  wrote:


IHi:
I have a student who is trying to establish a connection between mySQL
2019 and NetBeans on Windows 10.

We've tried following the directions at
https://netbeans.apache.org//kb/docs/ide/mysql.html
but can't find the mySQLadmin file.  Can anyone out there help?

Thanks.

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

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






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

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



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

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



Re: Heads-up: netbeans.org EOL on March 6th

2021-02-25 Thread antonio

Good point!

We could also give some love to the main page design, emphasizing the 
most important features (PHP, Gradle, Maven, etc...).


Cheers,
Antonio

On 25/02/2021 14:33, Bertrand Delacretaz wrote:

Hi,

On Tue, Feb 23, 2021 at 3:26 PM Jiří Kovalský  wrote:

...Long live to https://netbeans.apache.org domain! :) ...


FWIW, it might be good to create a "what happened to netbeans.org"
page or FAQ entry on http://netbeans.apache.org/

I bet that would save many explanations in the future, by pointing any
questions to that URL.

-Bertrand

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

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



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

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



Re: NetBeans 8.2 Maven Artifacts, anyone?

2020-08-20 Thread antonio

Hi all,

We have a listing with md5sums now at

http://137.254.56.27/nexus/content/groups/netbeans/org/netbeans/api/org-jdesktop-layout/RELEASE68/printOutput.txt

Kind regards,
Antonio

El 16/7/20 a las 21:30, Emilian Bold escribió:

This sounds like web scrapping almost.

Can somebody from Oracle either create a huge tar file to download or at 
least do a 'find .' on the server so we have a full list of files to backup?


Historical releases are also worth keeping.

--emi

joi, 16 iul. 2020, 22:22 antonio <mailto:anto...@vieiro.net>> a scris:


Hi Emi,

I think that the easiest way to download the stuff it using the Maven
Indexer. I think that you can use that to fetch a list of artifacts
(and
even the artifacts themselves) for all Oracle NetBeans releases.

Kind regards,
    Antonio

El 16/7/20 a las 17:38, Emilian Bold escribió:
 > Loads of people do. Please provide a way to easily download what
 > NetBeans/Oracle plans on deleting and I will back then up somewhere.
 >
 > --emi
 >
 > joi, 16 iul. 2020, 11:17 Antonio mailto:anto...@vieiro.net>
 > <mailto:anto...@vieiro.net <mailto:anto...@vieiro.net>>> a scris:
 >
 >     Hi all,
 >
 >     Is anybody still using NetBeans 8.2 Maven artifacts? Is there any
 >     interest in keeping those around?
 >
 >     Those old artifacts are being kept in Oracle servers, and
could be
 >     decomissioned soon. Is there any interest in keeping them around?
 >
 >     Thanks,
 >     Antonio
 >
 >   
  -

 >     To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
<mailto:users-unsubscr...@netbeans.apache.org>
 >     <mailto:users-unsubscr...@netbeans.apache.org
<mailto:users-unsubscr...@netbeans.apache.org>>
 >     For additional commands, e-mail:
users-h...@netbeans.apache.org <mailto:users-h...@netbeans.apache.org>
 >     <mailto:users-h...@netbeans.apache.org
<mailto:users-h...@netbeans.apache.org>>
 >
 >     For further information about the NetBeans mailing lists, visit:
 > https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
 >



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

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



Re: Problems with debugging of C++ shared libraries in Netbeans 8.2

2020-08-06 Thread antonio

Ah, good to know it works with 7.2 for you.

Kind regards,
Antonio

El 3/8/20 a las 22:07, Игорь Волков escribió:

Hi!

Yes. All code is compiled by g++ with -g option.

I suppose that problem may be in following. After compiling and linking 
all binaries are deployed into folder, separated from the project tree, 
and debugging process calls binaries in this folder.


But just the same project can be traced by Netbeans 7.2 without any 
problem!


Отправлено из приложения "Почта 
<https://go.microsoft.com/fwlink/?LinkId=550986>" для Windows 10


*От: *antonio <mailto:anto...@vieiro.net>
*Отправлено: *1 августа 2020 г. в 7:38
*Кому: *users@netbeans.apache.org <mailto:users@netbeans.apache.org>
*Тема: *Re: Problems with debugging of C++ shared libraries in Netbeans 8.2

Hi,

Just to make sure: you have compiled your shared libraries with

debugging information, right?

Thanks,

Antonio

El 24/7/20 a las 8:04, Игорь Волков escribió:

 >    I am developing C++ project composed of a number of shared libraries.

 > I had no problems with debugging my code when I used Netbeans 7.2.

 > I'll be glad to use the latest Netbeans version but its site recomends

 > to wait a little and use version 8.2.

 > With version 8.2 I have a problem with debugging.

 > I can not trace into the code of my shared libraries and

 > debugger doesn't stop on breakpoints, which I put in this code.

 > I tried to play with different debugger options, but with no result.

 > Google doesn't help me. Maybe somebody can help me?

 > Thank you.

 >

-

To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org

For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:

https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



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

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



Re: Best strategy to solve JavaHelp issue

2020-07-24 Thread antonio

Hi,

I think this recipe deserves a small tutorial on our website.

We're currently under an Apache-wide migration of Jenkins that is 
stopping our web-site publishing job. Maybe within a few days we can set 
up a small page with this.


Kind regards,
Antonio

El 24/7/20 a las 21:02, Greg Bullock escribió:

Thank you for posting this.

Trying it just now, the .zip file does not have a 
\javahelp-2.0_05\binary folder.


Hoping to build the jhall.jar, I

 1. downloaded the source from github.com/javaee/javahelp. and
 2. in a CentOS 7 virtual machine (since my Windows 10 machine doesn't
have the required build tools) I ran make from the
javahelp-2.0_05/jhMaster folder.

This eventually gives a set of errors.  Alas, I'm too much of a noob in 
both Linux and Java to figure out what to try next.


Maybe someone here will have a suggestion.


[greg@localhost NetBeansProjects]$ cd javahelp-2.0_05/
[greg@localhost javahelp-2.0_05]$ ls
javahelp_nbproject  jhMaster  JSearchClient_nbproject 
JSearchIndexer_nbproject  README.ant

[greg@localhost javahelp-2.0_05]$ cd jhMaster/
[greg@localhost jhMaster]$ make
java -fullversion
openjdk full version "1.8.0_242-b07"
cd JSearch ; make all
make[1]: Entering directory 
`/media/sf_Documents/NetBeansProjects/javahelp-2.0_05/jhMaster/JSearch'

mkdir -p lib
cd misc ; make 
JHHOMEWS=/media/sf_Documents/NetBeansProjects/javahelp-2.0_05/jhMaster/JSearch/../JavaHelp 
jar
make[2]: Entering directory 
`/media/sf_Documents/NetBeansProjects/javahelp-2.0_05/jhMaster/JSearch/misc'
javac -d classes -classpath 
../../JavaHelp/src/impl:../../JavaHelp/src/new 
/media/sf_Documents/NetBeansProjects/javahelp-2.0_05/jhMaster/JSearch/../JavaHelp/src/new/javax/help/search/ConfigFile.java
Note: 
/media/sf_Documents/NetBeansProjects/javahelp-2.0_05/jhMaster/JSearch/../JavaHelp/src/new/javax/help/search/ConfigFile.java 
uses unchecked or unsafe operations.

Note: Recompile with -Xlint:unchecked for details.
javac -d classes -classpath 
../../JavaHelp/src/impl:../../JavaHelp/src/new 
/media/sf_Documents/NetBeansProjects/javahelp-2.0_05/jhMaster/JSearch/../JavaHelp/src/new/javax/help/search/IndexBuilder.java
javac -d classes -classpath 
../../JavaHelp/src/impl:../../JavaHelp/src/new 
/media/sf_Documents/NetBeansProjects/javahelp-2.0_05/jhMaster/JSearch/../JavaHelp/src/new/javax/help/search/IndexerKit.java
Note: ../../JavaHelp/src/new/javax/help/search/ConfigFile.java uses 
unchecked or unsafe operations.

Note: Recompile with -Xlint:unchecked for details.
javac -d classes -classpath 
../../JavaHelp/src/impl:../../JavaHelp/src/new 
/media/sf_Documents/NetBeansProjects/javahelp-2.0_05/jhMaster/JSearch/../JavaHelp/src/new/javax/help/search/SearchEngine.java
Note: ../../JavaHelp/src/new/javax/help/search/SearchQuery.java uses 
unchecked or unsafe operations.

Note: Recompile with -Xlint:unchecked for details.
make[2]: Warning: File `classes/javax/help/search/SearchEvent.class' has 
modification time 0.0092 s in the future
javac -d classes -classpath 
../../JavaHelp/src/impl:../../JavaHelp/src/new 
/media/sf_Documents/NetBeansProjects/javahelp-2.0_05/jhMaster/JSearch/../JavaHelp/src/impl/com/sun/java/help/impl/HeaderParser.java
javac -d classes -classpath 
../../JavaHelp/src/impl:../../JavaHelp/src/new 
/media/sf_Documents/NetBeansProjects/javahelp-2.0_05/jhMaster/JSearch/../JavaHelp/src/new/javax/help/HelpUtilities.java
Note: 
/media/sf_Documents/NetBeansProjects/javahelp-2.0_05/jhMaster/JSearch/../JavaHelp/src/new/javax/help/HelpUtilities.java 
uses unchecked or unsafe operations.

Note: Recompile with -Xlint:unchecked for details.
cd classes ; \
     jar cf ../../lib/jsearch-misc.jar javax com
make[2]: warning:  Clock skew detected.  Your build may be incomplete.
make[2]: Leaving directory 
`/media/sf_Documents/NetBeansProjects/javahelp-2.0_05/jhMaster/JSearch/misc'

cd client ; make jar
make[2]: Entering directory 
`/media/sf_Documents/NetBeansProjects/javahelp-2.0_05/jhMaster/JSearch/client'

mkdir classes
export CLASSPATH ; CLASSPATH=../lib/jsearch-misc.jar:. ; \
     javac -d classes com/sun/java/help/search/BitBuffer.java
export CLASSPATH ; CLASSPATH=../lib/jsearch-misc.jar:. ; \
     javac -d classes com/sun/java/help/search/Block.java
export CLASSPATH ; CLASSPATH=../lib/jsearch-misc.jar:. ; \
     javac -d classes com/sun/java/help/search/BlockFactory.java
export CLASSPATH ; CLASSPATH=../lib/jsearch-misc.jar:. ; \
     javac -d classes com/sun/java/help/search/BlockManager.java
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
export CLASSPATH ; CLASSPATH=../lib/jsearch-misc.jar:. ; \
     javac -d classes com/sun/java/help/search/BtreeDict.java
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
export CLASSPATH ; CLASSPATH=../lib/jsearch-misc.jar:. ; \
     javac -d classes com/sun/java/help/search/ByteArrayDecompressor.java
export CLASSPATH ; CLASSPATH=../l

Re: NetBeans 8.2 Maven Artifacts, anyone?

2020-07-16 Thread antonio

Hi Emi,

I think that the easiest way to download the stuff it using the Maven 
Indexer. I think that you can use that to fetch a list of artifacts (and 
even the artifacts themselves) for all Oracle NetBeans releases.


Kind regards,
Antonio

El 16/7/20 a las 17:38, Emilian Bold escribió:
Loads of people do. Please provide a way to easily download what 
NetBeans/Oracle plans on deleting and I will back then up somewhere.


--emi

joi, 16 iul. 2020, 11:17 Antonio <mailto:anto...@vieiro.net>> a scris:


Hi all,

Is anybody still using NetBeans 8.2 Maven artifacts? Is there any
interest in keeping those around?

Those old artifacts are being kept in Oracle servers, and could be
decomissioned soon. Is there any interest in keeping them around?

Thanks,
    Antonio

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
<mailto:users-unsubscr...@netbeans.apache.org>
For additional commands, e-mail: users-h...@netbeans.apache.org
<mailto:users-h...@netbeans.apache.org>

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



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

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



Re: NetBeans 8.2 Maven Artifacts, anyone?

2020-07-16 Thread antonio

Hi John,

The problem is that we cannot keep those binaries hosted in the ASF 
infrastructure (those old versions are not Apache software, but Oracle's 
and even Sun's) and that's why these are hosted in Oracle servers.


Would it be possible for your team to set up a Maven Repository [1] [2] 
Mirror [3] to keep those artifacts permanently cached in your hard disks 
and under your control? That would allow you to build even if the 
repository is taken down (and would speed up builds for you as well).


Kind regards,
Antonio


[1]
Open source and commercial maven repository software:
https://maven.apache.org/repository-management.html

[2]
http://archiva.apache.org/

[3]
Setting up a proxy/mirror system:
https://maven.apache.org/guides/mini/guide-mirror-settings.html

Quoting:

"""
Some reasons to use a mirror are:
- There is a synchronized mirror on the internet that is geographically 
closer and faster
- You want to replace a particular repository with your own internal 
repository which you have greater control over
- You want to run a repository manager to provide a local cache to a 
mirror and need to use its URL instead

"""


El 16/7/20 a las 18:00, John C. Manko escribió:
I agree.  Please keep those builds/installers or archive them. Some of 
our developers still use v8 exclusively for legacy applications and 
haven't made the transition to newer versions.


On 7/16/20 11:38 AM, Emilian Bold wrote:
Loads of people do. Please provide a way to easily download what 
NetBeans/Oracle plans on deleting and I will back then up somewhere.


--emi

joi, 16 iul. 2020, 11:17 Antonio <mailto:anto...@vieiro.net>> a scris:


Hi all,

Is anybody still using NetBeans 8.2 Maven artifacts? Is there any
interest in keeping those around?

Those old artifacts are being kept in Oracle servers, and could be
decomissioned soon. Is there any interest in keeping them around?

Thanks,
Antonio

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
<mailto:users-unsubscr...@netbeans.apache.org>
For additional commands, e-mail: users-h...@netbeans.apache.org
<mailto:users-h...@netbeans.apache.org>

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

- To 
unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org For 
additional commands, e-mail: users-h...@netbeans.apache.org For further 
information about the NetBeans mailing lists, visit: 
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


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

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



NetBeans 8.2 Maven Artifacts, anyone?

2020-07-16 Thread Antonio

Hi all,

Is anybody still using NetBeans 8.2 Maven artifacts? Is there any 
interest in keeping those around?


Those old artifacts are being kept in Oracle servers, and could be 
decomissioned soon. Is there any interest in keeping them around?


Thanks,
Antonio

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

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



Re: php development

2020-07-08 Thread antonio

I don't think we have NB-12 specific documents yet.

Maybe you want to take a look to the NetBeans PHP Learning Trail here:

https://netbeans.apache.org/kb/docs/php.html

Of course, any enhancements to the documentation are welcome :-)

Cheers,
Antonio

El 7/7/20 a las 0:55, Ernie Rael escribió:
Will someone(kindly or otherwise) point me to docs that show how to set 
up NB-12 with a server to write/debug/test php/mysql stuff locally?


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

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



Re: Netbeans11.0 on windows10 does not starts up anymore

2019-06-04 Thread Antonio

Oh, yeah, jps, jstack and even jconsole are still available in JDK 12:

https://docs.oracle.com/en/java/javase/12/tools/jps.html#GUID-6EB65B96-F9DD-4356-B825-6146E9EEC81E

jconsole has a gui, so it's probably easier than jps/jstack alone.

This should help you & us to see what's going on.

Cheers,
Antonio

El 05/06/2019 a las 7:43, Antonio escribió:

Hi Eef,

If jvisualvm is missing then maybe you can use "jps" to find out the 
process identifier (PID) of the running JVMs in your laptop. This is an 
integer number.


Once you have the PID of the appropriate JVM you can then use "jstack" 
to obtain a thread-dump of the JVM. That would help us see why NetBeans 
is freezing in your laptop.


I imagine these tools are available in JDK 12, but can't currently tell 
(I don't have JDK 12 in this laptop right now).


HTH,
Antonio

El 04/06/2019 a las 18:13, Eef Custers escribió:

Hi Antonio,

My troubles with my configuration started after I tried to upgrade from
Java-8(212)/Netbeans8.2 to Java-12/Netbeans11.0. I know that this new
configuration has a lot of fundamental chances, for example the 
separation

of JavaFX from the jdk. Concerning the tool jvisualvm I fear the same
situation: the tool is not in my jdk-12.0.1.
Do you have any suggestions?

Regards,

Eef


Op di 4 jun. 2019 om 16:55 schreef Antonio :


You can use "jvisualvm", a visual tool bundled with the JDK that is used
to "inspect" whatever a Java Virtual Machine is doing. Take a look at
the "threads" section and tell us what the threads are doing.

The "jvisualvm" tool bundled with the JDK is, by the way, built with
NetBeans technology.

HTH,
Antonio

El 03/06/2019 a las 15:59, Eef Custers escribió:

Hello,

My Netbeans 11.0 installation has problems in showing the GUI. It only
produces a background process. This situation emerged suddenly and for
unknown reasons. I had been able to run Netbeans11 before that 
moment. I

have been trying to make Netbeans work with Java12 (Java jdk-12.0.1
and javafx-sdk-12.0.1),
but it failed so far. The java config with java FXML did run however 
when

directly run from Maven.
Now I have been looking around a lot but I cannot find a reason or a
solution to get Netbeans working again. Also a complete reinstall does

not

solve this problem.
Can somebody support me on thi issue? It will be greatly appreciated!

My configuration is:

C:\java_lib\jdk-12.0.1\bin

C:\java_lib\javafx-sdk-12.0.1\bin

C:\java_lib\javafx-jmods-12.0.1;

JAVA_HOME=C:\java_lib\jdk-12.0.1

CLASSPATH= C:\java_lib\jdk-12.0.1\lib; 
C:\java_lib\javafx-sdk-12.0.1\lib;

C:\java_lib\javafx-jmods-12.0.1;



My console output of the startup is:



Log Session: Monday, June 3, 2019 at 3:41:36 PM Central European Summer

Time



System Info:


    Product Version = Apache NetBeans IDE 11.0 (Build
incubator-netbeans-release-404-on-20190319)

    Operating System    = Windows 10 version 10.0 running on amd64

    Java; VM; Vendor    = 12.0.1; OpenJDK 64-Bit Server VM 
12.0.1+12;

Oracle Corporation

    Runtime = OpenJDK Runtime Environment 12.0.1+12

    Java Home   = c:\java_lib\jdk-12.0.1

    System Locale; Encoding = en_US (nb); UTF-8

    Home Directory  = C:\Users\ecusters

    Current Directory   = C:\Tools\netbeans-11.0\bin

    User Directory  =

C:\Users\ecusters\AppData\Roaming\NetBeans\11.0


    Cache Directory =
C:\Users\ecusters\AppData\Local\NetBeans\Cache\11.0

    Installation    = C:\Tools\netbeans-11.0\nb

  C:\Tools\netbeans-11.0\ergonomics

  C:\Tools\netbeans-11.0\ide

  C:\Tools\netbeans-11.0\extide

  C:\Tools\netbeans-11.0\java

  C:\Tools\netbeans-11.0\apisupport

  C:\Tools\netbeans-11.0\webcommon

  C:\Tools\netbeans-11.0\websvccommon

  C:\Tools\netbeans-11.0\enterprise

  C:\Tools\netbeans-11.0\profiler

  C:\Tools\netbeans-11.0\php

  C:\Tools\netbeans-11.0\harness

  C:\Tools\netbeans-11.0\groovy

  C:\Tools\netbeans-11.0\javafx

  C:\Tools\netbeans-11.0\platform

    Boot & Ext. Classpath   =

    Application Classpath   =

C:\Tools\netbeans-11.0\platform\lib\boot.jar;C:\Tools\netbeans-11.0\platform\lib\org-openide-modules.jar;C:\Tools\netbeans-11.0\platform\lib\org-openide-util-lookup.jar;C:\Tools\netbeans-11.0\platform\lib\org-openide-util-ui.jar;C:\Tools\netbeans-11.0\platform\lib\org-openide-util.jar 



    Startup Classpath   =

C:\Tools\netbeans-11.0\platform\core\asm-all-5.0.1.jar;C:\Tools\netbeans-11.0\platform\core\core-base.jar;C:\Tools\netbeans-11.0\platform\core\core.jar;C:\

Re: Netbeans11.0 on windows10 does not starts up anymore

2019-06-04 Thread Antonio

Hi Eef,

If jvisualvm is missing then maybe you can use "jps" to find out the 
process identifier (PID) of the running JVMs in your laptop. This is an 
integer number.


Once you have the PID of the appropriate JVM you can then use "jstack" 
to obtain a thread-dump of the JVM. That would help us see why NetBeans 
is freezing in your laptop.


I imagine these tools are available in JDK 12, but can't currently tell 
(I don't have JDK 12 in this laptop right now).


HTH,
Antonio

El 04/06/2019 a las 18:13, Eef Custers escribió:

Hi Antonio,

My troubles with my configuration started after I tried to upgrade from
Java-8(212)/Netbeans8.2 to Java-12/Netbeans11.0. I know that this new
configuration has a lot of fundamental chances, for example the separation
of JavaFX from the jdk. Concerning the tool jvisualvm I fear the same
situation: the tool is not in my jdk-12.0.1.
Do you have any suggestions?

Regards,

Eef


Op di 4 jun. 2019 om 16:55 schreef Antonio :


You can use "jvisualvm", a visual tool bundled with the JDK that is used
to "inspect" whatever a Java Virtual Machine is doing. Take a look at
the "threads" section and tell us what the threads are doing.

The "jvisualvm" tool bundled with the JDK is, by the way, built with
NetBeans technology.

HTH,
Antonio

El 03/06/2019 a las 15:59, Eef Custers escribió:

Hello,

My Netbeans 11.0 installation has problems in showing the GUI. It only
produces a background process. This situation emerged suddenly and for
unknown reasons. I had been able to run Netbeans11 before that moment. I
have been trying to make Netbeans work with Java12 (Java jdk-12.0.1
and javafx-sdk-12.0.1),
but it failed so far. The java config with java FXML did run however when
directly run from Maven.
Now I have been looking around a lot but I cannot find a reason or a
solution to get Netbeans working again. Also a complete reinstall does

not

solve this problem.
Can somebody support me on thi issue? It will be greatly appreciated!

My configuration is:

C:\java_lib\jdk-12.0.1\bin

C:\java_lib\javafx-sdk-12.0.1\bin

C:\java_lib\javafx-jmods-12.0.1;

JAVA_HOME=C:\java_lib\jdk-12.0.1

CLASSPATH= C:\java_lib\jdk-12.0.1\lib; C:\java_lib\javafx-sdk-12.0.1\lib;
C:\java_lib\javafx-jmods-12.0.1;



My console output of the startup is:



Log Session: Monday, June 3, 2019 at 3:41:36 PM Central European Summer

Time



System Info:


Product Version = Apache NetBeans IDE 11.0 (Build
incubator-netbeans-release-404-on-20190319)

Operating System= Windows 10 version 10.0 running on amd64

Java; VM; Vendor= 12.0.1; OpenJDK 64-Bit Server VM 12.0.1+12;
Oracle Corporation

Runtime = OpenJDK Runtime Environment 12.0.1+12

Java Home   = c:\java_lib\jdk-12.0.1

System Locale; Encoding = en_US (nb); UTF-8

Home Directory  = C:\Users\ecusters

Current Directory   = C:\Tools\netbeans-11.0\bin

User Directory  =

C:\Users\ecusters\AppData\Roaming\NetBeans\11.0


Cache Directory =
C:\Users\ecusters\AppData\Local\NetBeans\Cache\11.0

Installation= C:\Tools\netbeans-11.0\nb

  C:\Tools\netbeans-11.0\ergonomics

  C:\Tools\netbeans-11.0\ide

  C:\Tools\netbeans-11.0\extide

  C:\Tools\netbeans-11.0\java

  C:\Tools\netbeans-11.0\apisupport

  C:\Tools\netbeans-11.0\webcommon

  C:\Tools\netbeans-11.0\websvccommon

  C:\Tools\netbeans-11.0\enterprise

  C:\Tools\netbeans-11.0\profiler

  C:\Tools\netbeans-11.0\php

  C:\Tools\netbeans-11.0\harness

  C:\Tools\netbeans-11.0\groovy

  C:\Tools\netbeans-11.0\javafx

  C:\Tools\netbeans-11.0\platform

Boot & Ext. Classpath   =

Application Classpath   =


C:\Tools\netbeans-11.0\platform\lib\boot.jar;C:\Tools\netbeans-11.0\platform\lib\org-openide-modules.jar;C:\Tools\netbeans-11.0\platform\lib\org-openide-util-lookup.jar;C:\Tools\netbeans-11.0\platform\lib\org-openide-util-ui.jar;C:\Tools\netbeans-11.0\platform\lib\org-openide-util.jar


Startup Classpath   =


C:\Tools\netbeans-11.0\platform\core\asm-all-5.0.1.jar;C:\Tools\netbeans-11.0\platform\core\core-base.jar;C:\Tools\netbeans-11.0\platform\core\core.jar;C:\Tools\netbeans-11.0\platform\core\org-netbeans-libs-asm.jar;C:\Tools\netbeans-11.0\platform\core\org-openide-filesystems-compat8.jar;C:\Tools\netbeans-11.0\platform\core\org-openide-filesystems.jar;C:\Tools\netbeans-11.0\nb\core\org-netbeans-upgrader.jar;C:\Tools\netbeans-11.0\nb\core\locale\core_nb.jar




-

Re: Netbeans11.0 on windows10 does not starts up anymore

2019-06-04 Thread Antonio
You can use "jvisualvm", a visual tool bundled with the JDK that is used 
to "inspect" whatever a Java Virtual Machine is doing. Take a look at 
the "threads" section and tell us what the threads are doing.


The "jvisualvm" tool bundled with the JDK is, by the way, built with 
NetBeans technology.


HTH,
Antonio

El 03/06/2019 a las 15:59, Eef Custers escribió:

Hello,

My Netbeans 11.0 installation has problems in showing the GUI. It only
produces a background process. This situation emerged suddenly and for
unknown reasons. I had been able to run Netbeans11 before that moment. I
have been trying to make Netbeans work with Java12 (Java jdk-12.0.1
and javafx-sdk-12.0.1),
but it failed so far. The java config with java FXML did run however when
directly run from Maven.
Now I have been looking around a lot but I cannot find a reason or a
solution to get Netbeans working again. Also a complete reinstall does not
solve this problem.
Can somebody support me on thi issue? It will be greatly appreciated!

My configuration is:

C:\java_lib\jdk-12.0.1\bin

C:\java_lib\javafx-sdk-12.0.1\bin

C:\java_lib\javafx-jmods-12.0.1;

JAVA_HOME=C:\java_lib\jdk-12.0.1

CLASSPATH= C:\java_lib\jdk-12.0.1\lib; C:\java_lib\javafx-sdk-12.0.1\lib;
C:\java_lib\javafx-jmods-12.0.1;



My console output of the startup is:



Log Session: Monday, June 3, 2019 at 3:41:36 PM Central European Summer Time


System Info:


   Product Version = Apache NetBeans IDE 11.0 (Build
incubator-netbeans-release-404-on-20190319)

   Operating System= Windows 10 version 10.0 running on amd64

   Java; VM; Vendor= 12.0.1; OpenJDK 64-Bit Server VM 12.0.1+12;
Oracle Corporation

   Runtime = OpenJDK Runtime Environment 12.0.1+12

   Java Home   = c:\java_lib\jdk-12.0.1

   System Locale; Encoding = en_US (nb); UTF-8

   Home Directory  = C:\Users\ecusters

   Current Directory   = C:\Tools\netbeans-11.0\bin

   User Directory  = C:\Users\ecusters\AppData\Roaming\NetBeans\11.0

   Cache Directory =
C:\Users\ecusters\AppData\Local\NetBeans\Cache\11.0

   Installation= C:\Tools\netbeans-11.0\nb

 C:\Tools\netbeans-11.0\ergonomics

 C:\Tools\netbeans-11.0\ide

 C:\Tools\netbeans-11.0\extide

 C:\Tools\netbeans-11.0\java

 C:\Tools\netbeans-11.0\apisupport

 C:\Tools\netbeans-11.0\webcommon

 C:\Tools\netbeans-11.0\websvccommon

 C:\Tools\netbeans-11.0\enterprise

 C:\Tools\netbeans-11.0\profiler

 C:\Tools\netbeans-11.0\php

 C:\Tools\netbeans-11.0\harness

 C:\Tools\netbeans-11.0\groovy

 C:\Tools\netbeans-11.0\javafx

 C:\Tools\netbeans-11.0\platform

   Boot & Ext. Classpath   =

   Application Classpath   =
C:\Tools\netbeans-11.0\platform\lib\boot.jar;C:\Tools\netbeans-11.0\platform\lib\org-openide-modules.jar;C:\Tools\netbeans-11.0\platform\lib\org-openide-util-lookup.jar;C:\Tools\netbeans-11.0\platform\lib\org-openide-util-ui.jar;C:\Tools\netbeans-11.0\platform\lib\org-openide-util.jar

   Startup Classpath   =
C:\Tools\netbeans-11.0\platform\core\asm-all-5.0.1.jar;C:\Tools\netbeans-11.0\platform\core\core-base.jar;C:\Tools\netbeans-11.0\platform\core\core.jar;C:\Tools\netbeans-11.0\platform\core\org-netbeans-libs-asm.jar;C:\Tools\netbeans-11.0\platform\core\org-openide-filesystems-compat8.jar;C:\Tools\netbeans-11.0\platform\core\org-openide-filesystems.jar;C:\Tools\netbeans-11.0\nb\core\org-netbeans-upgrader.jar;C:\Tools\netbeans-11.0\nb\core\locale\core_nb.jar

---

INFO [org.netbeans.modules.netbinox]: Install area set to
file:/C:/Tools/netbeans-11.0/

WARNING [org.netbeans.core.modules]: the modules
[org.netbeans.modules.java.editor.lib, org.netbeans.modules.xml.text] use
org.netbeans.modules.editor.deprecated.pre65formatting which is deprecated.

WARNING [org.netbeans.core.modules]: the modules
[org.netbeans.modules.ide.kit, org.netbeans.modules.xml.text] use
org.netbeans.modules.editor.structure which is deprecated.


The startup process of Netbeans stops at the following point:



org.eclipse.mylyn.commons.core [3.17.0 3.17.0.v20150625-2042]

 org.eclipse.equinox.security [1.1.1 1.1.1.R37x_v20110822-1018]

 org.eclipse.equinox.registry [3.5.200 3.5.200.v20120522-1841]

 org.eclipse.equinox.preferences [3.4.2 3.4.2.v20120111-2020]

 org.eclipse.equinox.app [1.3.100 1.3.100.v20110321]

 org.eclipse.core.runtime.compatibility.auth [3.2.200
3.2.200.v20110110]

 org.ecli

Re: JaCoCoverage plugin

2019-05-27 Thread Antonio
+1 to using Maven in the classroom. Way to go, I think. This is a 
standard de facto in industry, I think.


Cheers,
Antonio

El 27/5/19 a las 20:01, Pieter van den Hombergh escribió:

Hi Eduardo,

I was in similar  situation, but then followed Geertjan Wielenga’s 
advice to consider maven over ant based projects. If used properly, 
maven does all the rights things and better. So I have made the switch, 
and are happy with it.
Supplying the students with a proper parent-Pom takes a lot of the scary 
things of maven away, because in there you can provide things like 
coverage (== Jacoco ) as a maven dependency, so that students only have 
the libraries their projects actually need. I will switch over to maven 
projects for our initial java course too in September. To find some 
examples, have a look at github sebivenlo, where you find such 
parent-pom, called sebipom and a few projects that use that parent.


Navigate to
https://github.com/sebivenlo/sebipom
And it sibling projects on github to see what I provide.
If you want some example exercises, let me know and I will send them 
using a private channel.


On Sat, 25 May 2019 at 00:54, Eduardo Mosqueira Rey 
mailto:eduardo.mosque...@udc.es>> wrote:


Hi all,

__ __

I used in classroom the JaCoCoverage plugin with NetBeans 8.2 for
the students to check the coverage of their tests.

It had an easy and straightforward installation and was very simple
to use, ideal for newbies. 

__ __

Nevertheless, the plugin is no longer maintained at it doesn’t work
with NetBeans 11.0. 

This year I want to migrate the classroom installation to Apache
NetBeans but the lack of a coverage tool is an inconvenient.

__ __

Is there an easy way to install a Coverage tool (whatever) in
NetBeans 11.0?

**easy to install** is an important requirement.

__ __

Any suggestion would be appreciated.

__ __

Many thanks,

-- Eduardo

__ __

--
Pieter Van den Hombergh.
No software documentation is complete with out it's source code.


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

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



Re: JaCoCoverage plugin

2019-05-25 Thread Antonio

Bos días, Eduardo, all,

You're using JDK11 or JDK12, right?

It seems you'll have to upgrade the jacoco version in your pom.xml, as 
JBoss is doing in [1]. This looks very similar to the error you're 
getting. They've upgraded to 0.8.2 [2]. AFAIK jacoco 0.8.0 has only 
_experimental_ support for JDK11 and JDK12.


Unha aperta,
Antonio

[1]
https://issues.jboss.org/browse/JBIDE-26336?_sscc=t

[2]
https://github.com/jbosstools/jbosstools-build/blob/master/parent/pom.xml#L893


El 25/5/19 a las 11:26, Eduardo Mosqueira Rey escribió:
Just for clarify the branch coverage is in the full report at 
"\target\site\jacoco\index.html" what I missed was that information in 
the NetBeans GUI.


*De:* Eduardo Mosqueira Rey 
*Enviado:* sábado, 25 de mayo de 2019 11:04
*Para:* Laszlo Kishalmi; users@netbeans.apache.org
*Asunto:* RE: JaCoCoverage plugin
With Maven I managed to get the coverage data adding this plugin to the pom:

             
                 org.jacoco
                 jacoco-maven-plugin
                 0.8.2
                 
                     
                         
                             prepare-agent
                         
                     
                     
                     
                         report
                         test
                         
                             report
                         
                     
                 
             

The problem is that it forces the students to look under the hood in the 
project structure.
Also I missed the branch coverage information. It seems to be counting 
only line coverage, as far as I know.


With Gradle I cannot even run the tests. I am not a Gradle user so maybe 
I missed something.

Here it is the output:

JAVA_HOME="C:\Program Files\Java\jdk-11.0.2"
cd C:\Users\Eduardo\Documents\NetBeansProjects\gradleproject1; 
C:\Users\Eduardo\.gradle\wrapper\dists\gradle-4.10.2-bin\cghg6c4gf4vkiutgsab8yrnwv\gradle-4.10.2\bin\gradle 
--configure-on-demand --rerun-tasks -x check test

Configuration on demand is an incubating feature.
 > Task :compileJava
 > Task :processResources NO-SOURCE
 > Task :classes
 > Task :compileTestJava
 > Task :processTestResources NO-SOURCE
 > Task :testClasses
Could not write standard input to Gradle Test Executor 1.
java.io.IOException: Se est cerrando la canalizacin
at java.base/java.io.FileOutputStream.writeBytes(Native Method)
at java.base/java.io.FileOutputStream.write(FileOutputStream.java:354)
at 
java.base/java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:81)
at 
java.base/java.io.BufferedOutputStream.flush(BufferedOutputStream.java:142)
at 
org.gradle.process.internal.streams.ExecOutputHandleRunner.forwardContent(ExecOutputHandleRunner.java:66)
at 
org.gradle.process.internal.streams.ExecOutputHandleRunner.run(ExecOutputHandleRunner.java:51)
at 
org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute(ExecutorPolicy.java:63)
at 
org.gradle.internal.concurrent.ManagedExecutorImpl$1.run(ManagedExecutorImpl.java:46)
at 
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
at 
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
at 
org.gradle.internal.concurrent.ThreadFactoryImpl$ManagedThreadRunnable.run(ThreadFactoryImpl.java:55)

at java.base/java.lang.Thread.run(Thread.java:834)

 > Task :test FAILED
Exception in thread "main" java.lang.reflect.InvocationTargetException
at 
java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native 
Method)
at 
java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at 
java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

at java.base/java.lang.reflect.Method.invoke(Method.java:566)
at 
java.instrument/sun.instrument.InstrumentationImpl.loadClassAndStartAgent(InstrumentationImpl.java:513)
at 
java.instrument/sun.instrument.InstrumentationImpl.loadClassAndCallPremain(InstrumentationImpl.java:525)
Caused by: java.lang.RuntimeException: Class java/lang/UnknownError 
could not be instrumented.FATAL ERROR in native method: processing of 
-javaagent failed


at 
org.jacoco.agent.rt.internal_c13123e.core.runtime.ModifiedSystemClassRuntime.createFor(ModifiedSystemClassRuntime.java:140)
at 
org.jacoco.agent.rt.internal_c13123e.core.runtime.ModifiedSystemClassRuntime.createFor(ModifiedSystemClassRuntime.java:101)
at 
org.jacoco.agent.rt.internal_c13123e.PreMain.createRuntime(PreMain.java:55)

at org.jacoco.agent.rt.internal_c13123e.PreMain.premain(PreMain.java:47)
... 6 more
Caused by: java.lang.NoSuchFieldException: $jacocoAccess
at java.base/java.lang.Class.getField(Class.java:2000)
at 
org.jacoco.agent.rt.internal_c13123e.core.runtime.ModifiedSystemClassRuntime.createF

Re: Netbeans API website down ?

2019-05-22 Thread Antonio

Ready!

El 22/5/19 a las 22:38, Antonio escribió:

Thanks for reporting.

It seems the jenkins job responsible for generating Javadoc is not gone

https://builds.apache.org/job/netbeans-r110-apidocmaven/lastSuccessfulBuild/artifact/WEBZIP.zip 



We'll try to restore it. Thanks for reporting!

Cheers,
Antonio

El 22/5/19 a las 20:39, Jerome Lelasseux escribió:
Am I the only one to see Netbeans API websites down ? Below are the 
first results when I google "netbeans API", which I've been doing for 
years without any problem...


http://bits.netbeans.org/10.0/javadoc/    => "You don't have 
permission to access /10.0/javadoc/ on this server."  (same if I 
replace 10.0 with 11.0)


https://bits.netbeans.org/dev/javadoc/   same

https://netbeans.org/api   => I see a page with the text below

{
   "projects_href": "https://netbeans.org/api/projects;,
   "services_href": "https://netbeans.org/api/services;,
   "licenses_href": "https://netbeans.org/api/licenses;,
   "content_type": "application/vnd.com.kenai+json"
}



The only site working for me is :http://137.254.56.27/7.2/javadoc/


Jerome





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

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



Re: Netbeans API website down ?

2019-05-22 Thread Antonio

Thanks for reporting.

It seems the jenkins job responsible for generating Javadoc is not gone

https://builds.apache.org/job/netbeans-r110-apidocmaven/lastSuccessfulBuild/artifact/WEBZIP.zip

We'll try to restore it. Thanks for reporting!

Cheers,
Antonio

El 22/5/19 a las 20:39, Jerome Lelasseux escribió:
Am I the only one to see Netbeans API websites down ? Below are the 
first results when I google "netbeans API", which I've been doing for 
years without any problem...


http://bits.netbeans.org/10.0/javadoc/    => "You don't have permission 
to access /10.0/javadoc/ on this server."  (same if I replace 10.0 with 
11.0)


https://bits.netbeans.org/dev/javadoc/   same

https://netbeans.org/api   => I see a page with the text below

{
   "projects_href": "https://netbeans.org/api/projects;,
   "services_href": "https://netbeans.org/api/services;,
   "licenses_href": "https://netbeans.org/api/licenses;,
   "content_type": "application/vnd.com.kenai+json"
}



The only site working for me is :http://137.254.56.27/7.2/javadoc/


Jerome





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

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



Re: Internet of Things (IoT), OPC UA and OSGi

2019-05-15 Thread Antonio

Thanks arsi,

Yep, having different screenshots would be helpful. Probably with some 
short texts explaining what's going on, and to give credit where is due 
:-). The bigger the resolution, the better.


Thanks again,
Antonio

El 15/5/19 a las 8:42, arsi escribió:

Hi,

Yes of course.
If you want, I can make some pictures from other projects..

ArSi

*From:* Antonio 
*Sent:* Tuesday, May 14, 2019 10:08PM
*To:* Users 
*Subject:* Re: Internet of Things (IoT), OPC UA and OSGi


Hi arsi,

Can we use this image you're posting for the NetBeans website? This 
would fit nicely as an example of a NetBeans Platform app.


Thanks,
Antonio

El 12/5/19 a las 9:59, arsi escribió:

Hi,

NetBeans has this support long ago, but commercial. And he can do 
muchmore...

https://blogs.oracle.com/geertjan/scada-system-on-the-netbeans-platform
https://translate.google.com/translate?sl=auto=en=https%3A%2F%2Fwww.atpjournal.sk%2Frubriky%2Faplikacie%2Fzapli.html%3Fpage_id%3D25831 




We are currently taking care of heat production in the two largest 
Slovak towns Bratislava and Košice.
At the Atomic Power Plant, we operate a radioactive waste disposal 
line and dosimetric measurements. And a few shopping centers.



As a backend is used Jetty server extended by NetBean Lookup, which 
handle communication with PLCs and IoT and distributes collected data 
to Scada Clients. (NetBeans platform app).
We support protocols Bacnet/IP, Honeywell C-Bus, Modbus, Saia, Amit, 
M-bus, OPC UA. And there is no problem adding any other.



Netbeans is used to program Scada clients. SVG images are used for 
graphics screens, and they are controlled from Java code.
From the programming interface, Scada clients are updated on the fly, 
including TopComponents and Toolbars.

The measuring points are selected via Code Completion.


Unfortunately we are a small company from Slovakia and we cannot 
compete with big players.But thanks to the benefits of NetBeans, we 
are very far ahead of other Sdada systems.


ArSi


*From:* European Neuroscience Center 
*Sent:* Sunday, May 12, 2019 12:28AM
*To:* Netbeans Mailing List 
*Subject:* Internet of Things (IoT), OPC UA and OSGi


Hi,

Are there any plans NetBeans to support Internet of Things (IoT), 
OPC UA and OSGi?


My question is related to my desire to use my favorite IDE, NetBeans 
in these innovative areas where currently dominates Eclipse, Android 
Studio (Android Things) based on IntelliJ IDEA and others.


  * https://iot.eclipse.org/
  * https://developers.google.com/iot/
  * https://cloud.google.com/solutions/iot-overview
  * https://cloud.google.com/solutions/iot/
  * https://cloud.google.com/iot-core/
  * https://aws.amazon.com/iot/
  * https://www.bosch.com/internet-of-things/
  * https://www.bosch-iot-suite.com/
  * https://www.sap.com/products/leonardo/iot.html
  * https://www.ibm.com/internet-of-things
  * Apple Inc., China Mobile, Huawei, Cisco, GE, HP, Intel, Microsoft,
    Philips, Qualcomm, Samsung, Schneider Electric, Verizon, Vodafone,
    etc.



Regards,
Miro.









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

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











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

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



Re: Internet of Things (IoT), OPC UA and OSGi

2019-05-14 Thread Antonio

Hi arsi,

Can we use this image you're posting for the NetBeans website? This 
would fit nicely as an example of a NetBeans Platform app.


Thanks,
Antonio

El 12/5/19 a las 9:59, arsi escribió:

Hi,

NetBeans has this support long ago, but commercial. And he can do 
muchmore...

https://blogs.oracle.com/geertjan/scada-system-on-the-netbeans-platform
https://translate.google.com/translate?sl=auto=en=https%3A%2F%2Fwww.atpjournal.sk%2Frubriky%2Faplikacie%2Fzapli.html%3Fpage_id%3D25831


We are currently taking care of heat production in the two largest 
Slovak towns Bratislava and Košice.
At the Atomic Power Plant, we operate a radioactive waste disposal line 
and dosimetric measurements. And a few shopping centers.



As a backend is used Jetty server extended by NetBean Lookup, which 
handle communication with PLCs and IoT and distributes collected data to 
Scada Clients. (NetBeans platform app).
We support protocols Bacnet/IP, Honeywell C-Bus, Modbus, Saia, Amit, 
M-bus, OPC UA. And there is no problem adding any other.



Netbeans is used to program Scada clients. SVG images are used for 
graphics screens, and they are controlled from Java code.
From the programming interface, Scada clients are updated on the fly, 
including TopComponents and Toolbars.

The measuring points are selected via Code Completion.


Unfortunately we are a small company from Slovakia and we cannot compete 
with big players.But thanks to the benefits of NetBeans, we are very far 
ahead of other Sdada systems.


ArSi


*From:* European Neuroscience Center 
*Sent:* Sunday, May 12, 2019 12:28AM
*To:* Netbeans Mailing List 
*Subject:* Internet of Things (IoT), OPC UA and OSGi


Hi,

Are there any plans NetBeans to support Internet of Things (IoT), OPC 
UA and OSGi?


My question is related to my desire to use my favorite IDE, NetBeans 
in these innovative areas where currently dominates Eclipse, Android 
Studio (Android Things) based on IntelliJ IDEA and others.


  * https://iot.eclipse.org/
  * https://developers.google.com/iot/
  * https://cloud.google.com/solutions/iot-overview
  * https://cloud.google.com/solutions/iot/
  * https://cloud.google.com/iot-core/
  * https://aws.amazon.com/iot/
  * https://www.bosch.com/internet-of-things/
  * https://www.bosch-iot-suite.com/
  * https://www.sap.com/products/leonardo/iot.html
  * https://www.ibm.com/internet-of-things
  * Apple Inc., China Mobile, Huawei, Cisco, GE, HP, Intel, Microsoft,
Philips, Qualcomm, Samsung, Schneider Electric, Verizon, Vodafone,
etc.



Regards,
Miro.









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

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



Re: Internet of Things (IoT), OPC UA and OSGi

2019-05-12 Thread Antonio

Not only!

Read more about Netbinox performance here: 
http://wiki.apidesign.org/wiki/JDeveloper and here: 
http://wiki.apidesign.org/wiki/Netbinox


Cheers,
Antonio

El 12/5/19 a las 11:44, European Neuroscience Center escribió:

NetBeans Module System and OSGi are kind of similar.


On Sun, May 12, 2019 at 12:13 PM Geertjan Wielenga <mailto:geert...@apache.org>> wrote:


What happens when you go to google.com <http://google.com> and
search for 'NetBeans and OSGI'?

Gj

On Sun, May 12, 2019 at 11:09 AM European Neuroscience Center
mailto:mnachev.nscenter...@gmail.com>> wrote:

Hi ArSi,

In my opinion, the problem is fundamental and lies in the vision
of future development. OSGi is the core of most new technologies
and products, including IoT and OPC UA, while NetBeans ignores
OSGi and rely on outdated technologies, that do not have a
future. For example, how easy is to create an OSGi application
or a module using NetBeans, if at all possible? Is everything in
NetBeans based on OSGi, so it can be used for other projects
like Eclipse and IntelliJ IDEA? OSGi makes it easy to reuse
different modules and applications for other purposes.


Miro.

On Sun, May 12, 2019 at 11:00 AM arsi mailto:a...@chello.sk>> wrote:

Hi,

NetBeans has this support long ago, but commercial. And he
can do muchmore...

https://blogs.oracle.com/geertjan/scada-system-on-the-netbeans-platform

https://translate.google.com/translate?sl=auto=en=https%3A%2F%2Fwww.atpjournal.sk%2Frubriky%2Faplikacie%2Fzapli.html%3Fpage_id%3D25831


We are currently taking care of heat production in the two
largest Slovak towns Bratislava and Košice.
At the Atomic Power Plant, we operate a radioactive waste
disposal line and dosimetric measurements. And a few
shopping centers.


As a backend is used Jetty server extended by NetBean
Lookup, which handle communication with PLCs and IoT and
distributes collected data to Scada Clients. (NetBeans
platform app).
We support protocols Bacnet/IP, Honeywell C-Bus, Modbus,
Saia, Amit, M-bus, OPC UA. And there is no problem adding
any other.


Netbeans is used to program Scada clients. SVG images are
used for graphics screens, and they are controlled from Java
code.
From the programming interface, Scada clients are updated on
the fly, including TopComponents and Toolbars.
The measuring points are selected via Code Completion.


Unfortunately we are a small company from Slovakia and we
cannot compete with big players.But thanks to the benefits
of NetBeans, we are very far ahead of other Sdada systems.

ArSi



*From:* European Neuroscience Center

<mailto:mnachev.nscenter...@gmail.com>
*Sent:* Sunday, May 12, 2019 12:28AM
*To:* Netbeans Mailing List 
<mailto:users@netbeans.apache.org>
*Subject:* Internet of Things (IoT), OPC UA and OSGi


Hi,

Are there any plans NetBeans to support Internet of Things
(IoT), OPC UA and OSGi?

My question is related to my desire to use my favorite
IDE, NetBeans in these innovative areas where currently
dominates Eclipse, Android Studio (Android Things) based
on IntelliJ IDEA and others.

  * https://iot.eclipse.org/
  * https://developers.google.com/iot/
  * https://cloud.google.com/solutions/iot-overview
  * https://cloud.google.com/solutions/iot/
  * https://cloud.google.com/iot-core/
  * https://aws.amazon.com/iot/
  * https://www.bosch.com/internet-of-things/
  * https://www.bosch-iot-suite.com/
  * https://www.sap.com/products/leonardo/iot.html
  * https://www.ibm.com/internet-of-things
  * Apple Inc., China Mobile, Huawei, Cisco, GE, HP,
Intel, Microsoft, Philips, Qualcomm, Samsung,
Schneider Electric, Verizon, Vodafone, etc.



Regards,
Miro.









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

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



Re: News: Apache NetBeans has graduated from the Apache Incubator

2019-04-18 Thread Antonio

Congratulations, everybody!!

Here're some minor enhancements to the website to celebrate:

https://github.com/apache/incubator-netbeans-website/pull/353

Special thanks to all our mentors that have helped us during the 
transition, to those that still wanted to remain in the project and to 
this group of students in Czechoslovakia that got all this thing started 
back in 1996! This has been a long ride indeed!


https://github.com/vieiro/incubator-netbeans-website/blob/feature/top-level-project/netbeans.apache.org/src/content/about/history.asciidoc

Cheers,
Antonio


El 18/04/2019 a las 1:11, Junichi Yamamoto escribió:

Really great news! Congratulations!!!

Have a nice day,
Junichi

On Thu, Apr 18, 2019 at 7:36 AM Geertjan Wielenga  wrote:


Hi all,

The ASF Board of Directors have just voted to establish the Apache NetBeans
project as a top level project. Congrats to us all, for the hard work and
dedication (and it only took 2 1/2 years)!

This is a public (binding) decision, so by means of this e-mail we are
officially sharing the good news that we have left the Apache Incubator and
are now an official Apache project.

Now comes the tasks of "un-incubating" all the resources we have, in the
coming days -- for example, you'll see references to "incubating" being
removed in various places.

Kind regards, and congrats to us all again,

Gj


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

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



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

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



Re: NetBeans 11.0-vc4 crash

2019-04-17 Thread Antonio

Hi Philip,

Thread 26 crashes [1]. As you can see in our text file, this is in 
libawt_lwawt.dylib (Java_sun_java2d_opengl_OGLRenderQueue_flushBuffer), 
which is inside the Java Virtual Machine. There's little we can do in 
the NetBeans side.


You may want to open a bug report in the OpenJDK Project, stating your 
OSX/Version (try to be as precise as possible) and the exact version of 
your JVM (it's also in the .txt file), and attaching the .txt file in 
the report as well for them to inspect.


Cheers,
Antonio

[1]


Thread 26 Crashed:: Java: Java2D Queue Flusher
0   libsystem_kernel.dylib  0x7fff5f9c623e __pthread_kill + 10
1   libsystem_pthread.dylib 0x7fff5fa7cc1c pthread_kill + 285
2   libsystem_c.dylib   0x7fff5f92f1c9 abort + 127
3   libjvm.dylib0x00010486029d os::abort(bool) + 25
4   libjvm.dylib  	0x00010498496a 
VMError::report_and_die() + 2304
5   libjvm.dylib  	0x000104861f1a 
JVM_handle_bsd_signal + 1131
6   libjvm.dylib  	0x00010485e127 signalHandler(int, 
__siginfo*, void*) + 47

7   libsystem_platform.dylib0x7fff5fa71b3d _sigtramp + 29
8   ??? 0x7fafe0940540 0 + 140393363801408
9   libawt_lwawt.dylib	0x0001240eb5f2 
Java_sun_java2d_opengl_OGLRenderQueue_flushBuffer + 1594

10  ??? 0x0001113664ea 0 + 4583744746
11  ??? 0x000116228174 0 + 4666327412


El 10/04/2019 a las 15:12, Philip Durbin escribió:

Do not fear. I did save the text from when Netbeans crashed and I'm
attaching it (netbeans-crash.txt). I sure hope there's nothing super
private in there. I assume it's safe to share publicly or you wouldn't be
encouraging me to. :)

Also, here's my Java version:

$ java -version
openjdk version "1.8.0_192"
OpenJDK Runtime Environment (AdoptOpenJDK)(build 1.8.0_192-b12)
OpenJDK 64-Bit Server VM (AdoptOpenJDK)(build 25.192-b12, mixed mode)

Thanks,

Phil

On Fri, Apr 5, 2019 at 12:58 AM Antonio  wrote:


Hi Phil,

This looks like an issue with your own JDK.

If this happens again, will you please post the full _text_ of the error
instead of a screenshot? There's important info if you scroll down in
that image! Even better: file a JIRA issue with that.

Thanks,
Antonio

El 04/04/2019 a las 21:16, Philip Durbin escribió:

I don't know if you want crash reports or not but this just appeared in

the

output of mine (first crash of NetBeans 11.0-vc4 for me):

Thread 46:: Java:

org.netbeans.modules.glassfish.common.LogViewMgr$LoggerRu


This is on Mac. I'll attach a screenshot.

Thanks,

Phil



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

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



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

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






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

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



Re: NetBeans 11.0-vc4 crash

2019-04-04 Thread Antonio

Hi Phil,

This looks like an issue with your own JDK.

If this happens again, will you please post the full _text_ of the error 
instead of a screenshot? There's important info if you scroll down in 
that image! Even better: file a JIRA issue with that.


Thanks,
Antonio

El 04/04/2019 a las 21:16, Philip Durbin escribió:

I don't know if you want crash reports or not but this just appeared in the
output of mine (first crash of NetBeans 11.0-vc4 for me):

Thread 46:: Java: org.netbeans.modules.glassfish.common.LogViewMgr$LoggerRu

This is on Mac. I'll attach a screenshot.

Thanks,

Phil



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

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



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

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



Re: Monday, 4 March: NetBeans Website Live Design Session April

2019-03-04 Thread Antonio

I couldn't make it to this one. Any interesting news?

Thanks,
Antonio

El 02/03/2019 a las 19:56, Geertjan Wielenga escribió:

Hi all!

An opportunity to discuss with each other a plan to redesign the
netbeans.apache.org site:

March 4, 18:00 CET

https://twitter.com/Dave_UX/status/1101896935412125696?s=20

https://www.youtube.com/watch?v=eaXqWCJp6zA

Thanks, see you there, it will be recorded too, though if a few of us are
there together, that would be great.

Thanks,

Gj



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

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



Re: please recommend Linux Font for Netbeans on Linux

2018-12-10 Thread Antonio

I use IBM Plex https://github.com/IBM/plex

El 07/12/2018 a las 7:11, * William escribió:

Hello list ...

Please refer to the screen shot below ... The comment on the right is the
column number of the parent class/interface on that line.

[image: image.png]

I'm running Netbeans 9 on Ubuntu 18.10 and using the JDK 11.  for contrast
on the command line in terminal, everything lines-up with al lthe fixed
fonts I've tested.  Including Courier 10

Same fonts in Netbeans are all over the place.  It is a mess.  No matter
which "Look and Feel" I use.

Does someone know a fixed font that works in netbbeans so that this example
lines up:

  1 2
123456789*123456789*

That's using the Gmail fixed font setting.  10 spaces in is a "1".  This is
all ove rthe pace with netbeans.  I don't think there's reason for that
except no one cared to make it work.  VS Code manages to work OK.

aloha,
  \_w_/
  ___



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

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



Re: Apache NetBeans: Duke's Choice Award Winner 2018

2018-10-23 Thread Antonio

Congratulations, everybody!!!

El 24/10/18 a las 1:29, Geertjan Wielenga escribió:

Hi all,

Congratulations to all of us!

We have won the highest accolade in the Java ecosystem -- a Duke's 
Choice Award.


Oracle press release:

https://www.oracle.com/it/corporate/pressrelease/oow18-code-one-java-keynote-2018-10-22.html

Attached is a happy pic of a lot of Apache NetBeans PPMC members at the 
award ceremony, together with Georges Saab, Vice President, Software 
Development, Java Platform Group at Oracle.


This is big news!

Gj




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

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



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

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



Re: [C] - Setting Up Debugger on Mac

2018-09-10 Thread Antonio Varela
On Mon, Sep 10, 2018 at 6:57 PM Michael Sporea 
wrote:

> I have Netbeans 8.2 and 9.0 on Mac running High Sierra…Xcode 10 is
> installed along with all Command Line Tools. I can’t figure out how to
> setup the debugger for c/c++. - Michael
>
>
  You need to install gdb with MacPorts or Brew, then sign it and run it as
root. Take a look at the section "Debugging ntopng in NetBeans" from this
PDF for more details.

https://fossies.org/linux/ntopng/doc/README.netbeans.pdf

-- 
Antonio Varela
unixli...@gmail.com


Re: How to build JavaCC from source?

2018-06-04 Thread Antonio

Hi,

Good to know you're helping the JavaCC guys :-)!

Maybe you can adapt the pom.xml file whenever they release the V8,0 
version. It would be great having JavaCC v8,0 uploaded to Maven Central.


Kind regards,
Antonio

El 03/06/2018 a las 10:57, Peter Nabbefeld escribió:


Hi Antonio,

I got to fix the pom.xml and sent them to JavaCC support (which seems to 
be maintained by one of the original authors), but he seems not to be 
interested: "I'm not sure if you are aware, but I'm completely revamping 
the code generator (see the branch csharp_codegen) and calling it V8,0. 
So all the old stuff should just be archived asap. I don't mind the 
maven/pom.xml as long as the ant build can co-exist with it.".


I've primarily been interested in JavaCC, because it started as a 
project sponsored by Sun. But currently I'm not satisfied with it for 
different reasons, e.g. documentation, so I'll not use it.


Kind regards
Peter


Am 01.06.2018 um 21:04 schrieb Antonio:

Hi,

Can you run a plain Maven build in the command line? Is this a 
Maven/pom.xml problem or a NetBeans problem?


If your objective is to build JavaCC from source, I don't think 
messing with the pom.xml (as retrieved from github's master branch) is 
a good idea.


I imagine the JavaCC people have a proper "pom.xml" file in their 
master branch. Just clone the repo and import it in NetBeans, then 
"Clean & Build" should do the job for you.


Cheers,
Antonio

On 01/06/18 19:20, Peter Nabbefeld wrote:


Hello,

I cloned JavaCC from "https://github.com/javacc/javacc.git; and tried 
to build it with NB 9.0 RC1. Of course, I first set the source/target 
versions to 1.8.


[1] The source hierarchy looks a bit suspicious, most probably 
because of several entries like the following in pom.xml:

src
 As I've never used those (to be honest, most changes I do in the 
POM are just adding copied dependencies), I don't know how to fix 
these. As I'm seeing Eclipse project files, I'd guess, that it 
handles them differently.


[2] As a result of the mal-configured hierarchy, packages are 
incorrectly interpreted by NB.


Usually, I'd guess the build file is correct, but IMHO maven should 
be able to build the project then without worrying, if NB interpretes 
the files correctly. So, could anybody tell me how to fix the build 
problems?



Kind regards
Peter


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

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



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

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




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

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



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

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



Re: How to build JavaCC from source?

2018-06-01 Thread Antonio

Hi,

Can you run a plain Maven build in the command line? Is this a 
Maven/pom.xml problem or a NetBeans problem?


If your objective is to build JavaCC from source, I don't think messing 
with the pom.xml (as retrieved from github's master branch) is a good idea.


I imagine the JavaCC people have a proper "pom.xml" file in their master 
branch. Just clone the repo and import it in NetBeans, then "Clean & 
Build" should do the job for you.


Cheers,
Antonio

On 01/06/18 19:20, Peter Nabbefeld wrote:


Hello,

I cloned JavaCC from "https://github.com/javacc/javacc.git; and tried to 
build it with NB 9.0 RC1. Of course, I first set the source/target 
versions to 1.8.


[1] The source hierarchy looks a bit suspicious, most probably because 
of several entries like the following in pom.xml:

src
     As I've never used those (to be honest, most changes I do in the 
POM are just adding copied dependencies), I don't know how to fix these. 
As I'm seeing Eclipse project files, I'd guess, that it handles them 
differently.


[2] As a result of the mal-configured hierarchy, packages are 
incorrectly interpreted by NB.


Usually, I'd guess the build file is correct, but IMHO maven should be 
able to build the project then without worrying, if NB interpretes the 
files correctly. So, could anybody tell me how to fix the build problems?



Kind regards
Peter


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

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



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

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



Re: incubating-netbeans-java-9.0-beta-bin.zip

2018-03-08 Thread Antonio

Hi John,

Some comments, then flying to the moon and participating in GSoC.

== 9.0 RC3

For NetBeans 9.0 RC3 the keys were at
https://dist.apache.org/repos/dist/release/incubator/netbeans/KEYS
as per
http://mail-archives.apache.org/mod_mbox/incubator-netbeans-dev/201802.mbox/browser

== 9.0 Beta

Then we voted to make 9.0 RC3 become 9.0 Beta as per
http://mail-archives.apache.org/mod_mbox/incubator-netbeans-dev/201802.mbox/browser
and the keys link didn't change either:
https://dist.apache.org/repos/dist/release/incubator/netbeans/KEYS

== Web link

So as far as I can tell the link is correct and matches the link at 
http://netbeans.apache.org/download/nb90/nb90-beta.html


== Flying to the moon

Anyway I do think that getting a release ready is more complicated than 
launching a rocket to the moon, making it land there and then bringing 
it back. The instructions at:


https://cwiki.apache.org/confluence/display/NETBEANS/Apache+NetBeans+Release+README

Are simply terrifying O_o. Whoever is able to do follow those by hand 
without making any errors is, IMHO, a real hero.


== GSoC

Maybe we want to build an Ant script/NetBeans Project to automate the 
process somehow. AFAIK many other Apache projects automate this somehow, 
ranging from Maven to shell scripts.


This would make a great Google Summer of Code project, wouldn't it?

Cheers,
Antonio


On 08/03/18 20:21, John McDonnell wrote:

Apologies for the spam, cross posting to dev.

@Antonio, do you know if the link on the website for NetBeans 9.0 Beta 
is correct?  Looking at this thread, the signature doesn't match the 
RC3.0 thread we voted on.  If we have a small typo we should try to 
catch this early in the NetCat phase.


Regards

John


On 8 March 2018 at 07:47, John McDonnell <mcdonnell.j...@gmail.com 
<mailto:mcdonnell.j...@gmail.com>> wrote:


Hi Leo,

I didn't import the keys, as I had previously done this step...

But

I'm looking at a different file then you:

https://dist.apache.org/repos/dist/dev/incubator/netbeans/incubating-netbeans-java/incubating-9.0-beta/incubating-netbeans-java-9.0-beta-bin.zip(you)

https://dist.apache.org/repos/dist/dev/incubator/netbeans/incubating-netbeans-java/incubating-9.0-beta-rc3/incubating-netbeans-java-9.0-beta-bin.zip(me)

@Geertjan, the vote thread you referenced earlier, we voted on the
link I used - and got a good signature, so I think that's okay.  But
the website points to a different URL (The one Leo checked).  I
suspect that the website is using the wrong URL, but before I jump
to that conclusion, just curious after the successful vote would you
have moved theartefact to the location on the website?

Regards

John


On 8 March 2018 at 01:50, Leo Donahue <donahu...@gmail.com
<mailto:donahu...@gmail.com>> wrote:

Hi John,

I noticed that you didn't issue:  gpg --import KEYS

I tried again, using wget to download the binary zip file, same
result.  I have also tried different mirrors.  I guess I will
just build from source, I was just being lazy.

(The --list-keys command illustrates I don't already have the
KEYS file imported)

leo@vmw01:~$ *gpg --list-keys*
leo@vmw01:~$ *wget
https://dist.apache.org/repos/dist/release/incubator/netbeans/KEYS
<https://dist.apache.org/repos/dist/release/incubator/netbeans/KEYS>*
--2018-03-07 18:40:53--
https://dist.apache.org/repos/dist/release/incubator/netbeans/KEYS
<https://dist.apache.org/repos/dist/release/incubator/netbeans/KEYS>
Resolving dist.apache.org <http://dist.apache.org>
(dist.apache.org <http://dist.apache.org>)... 209.188.14.144
Connecting to dist.apache.org <http://dist.apache.org>
(dist.apache.org
<http://dist.apache.org>)|209.188.14.144|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 7594 (7.4K) [text/plain]
Saving to: ‘KEYS’

KEYS 
100%[===>] 
  7.42K  --.-KB/s    in 0s


2018-03-07 18:40:54 (42.0 MB/s) - ‘KEYS’ saved [7594/7594]

leo@vmw01:~$ *wget

https://dist.apache.org/repos/dist/dev/incubator/netbeans/incubating-netbeans-java/incubating-9.0-beta/incubating-netbeans-java-9.0-beta-bin.zip.asc

<https://dist.apache.org/repos/dist/dev/incubator/netbeans/incubating-netbeans-java/incubating-9.0-beta/incubating-netbeans-java-9.0-beta-bin.zip.asc>*
--2018-03-07 18:41:11--

https://dist.apache.org/repos/dist/dev/incubator/netbeans/incubating-netbeans-java/incubating-9.0-beta/incubating-netbeans-java-9.0-beta-bin.zip.asc

<https://dist.apache.org/repos/dist/dev/incubator/netbeans/incubating-netbeans-java/incubating-9.0-beta/incubating-net

Re: [VOTE] Apache NetBeans Logo

2018-03-01 Thread Carlos Antonio Lopes
I vote on #1


--
--
*Carlos Antonio Lopes Piubello*
--
--
Gestor de TI e Programador
--
--
piube...@gmail.com
--
--
(14) 98827-8757
--
--

On Thu, Mar 1, 2018 at 1:23 PM, Mr. Internet <heinz.er...@mr-internet.ch>
wrote:

> I vote for #1
> Heinz
> --
> -
> Mr. Internet
> Heinz Ernst
> Mühlematt 5
> CH-8916 Jonen
> Switzerland
> Tel.  +41 56 640 10 88
> heinz.er...@mr-internet.ch
> http://www.mr-internet.ch
> -
>
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>


[ANN] Closing the NetBeans Logo Contest

2018-02-26 Thread Antonio

Hi all,

We'll be closing the First Apache NetBeans Logo Contest [1] by March the 
1st, to proceed with voting during March the 2nd, 3rd and 4th.


If you would like to submit a proposal for the Apache NetBeans Logo 
please do so before March the 2nd. Note that we're focusing in the icon 
design (not typography at the moment).


Refer to [1] for more details.

Thanks and best of luck,
Antonio

[1]
https://issues.apache.org/jira/browse/NETBEANS-145

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

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



Re: Can Netbeans do this?

2018-02-26 Thread Antonio
AFAIK the debugger can do this. Just add a breakpoint and then take a 
look at the rest of running threads, to see what they're doing.


Cheers,
Antonio

On 26/02/18 10:04, Owen Thomas wrote:

Hello.

I've been working with threads, and I would like to know if the IDE can 
show me where I have obtained a lock (using the "synchronized" keyword) 
on a particular type?


I think this should be something the IDE should in theory be able to do...

   Owen.


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

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



Re: built nb from git, no java web plugin?

2018-01-11 Thread Antonio

Hi Mark,

Exactly: the web modules have not been donated yet, so they are not 
under control of the ASF.


You may find existing web plugins in the plugin manager, though. Since 
you've reached this far you may want to install them and see how well 
they work (no promises here), and give Apache NetBeans a run. If you see 
any bugs (we're getting a beta version ready) you may want to file them 
at JIRA: https://issues.apache.org/jira/projects/NETBEANS/summary


Cheers,
Antonio

On 11/01/18 21:27, Geertjan Wielenga wrote:

Yes, the 2nd donation hasn’t been done yet. Apache NetBeans is only a Java SE 
IDE right now. Java Web, JavaScript, PHP, and more are still being donated.

Gj

Sent from my iPhone


On 11 Jan 2018, at 21:18, Mark Wade <markw...@optonline.net> wrote:

Hey Everyone,

First, I haven't been doing much in the way of programming lately but I wanted 
to check out what's going on so I cloned the NB sources from:

https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_apache_incubator-2Dnetbeans.git=DwICaQ=RoP1YumCXCgaWHvlZYR8PZh8Bv7qIrMUB65eapI_JnE=mbDljLosYPdmZgPL2qzX-pjBv_4xnxXEWOeG1_Zdqm8=YknUASaU_WtIW1sytmPcVZpeJKEZLf3nG3rmSg7kaCQ=qZmRf1XRkZoQMZNpGdGqOgutWZ7Z7tGZRkdm_0cCLv8=

and built it with ant and that all went well enough, NB runs but there is no 
plugin for Java EE or web development.

About shows:

Product Version: Apache NetBeans IDE Dev (Build 20180111-unknown-revn)
Java: 9.0.1; Java HotSpot(TM) 64-Bit Server VM 9.0.1+11
Runtime: Java(TM) SE Runtime Environment 9.0.1+11
System: Linux version 3.13.0-139-generic running on amd64; UTF-8; en_US (nb)
User directory: /home/markw/.netbeans/dev
Cache directory: /home/markw/.cache/netbeans/dev

I did something wrong I guess. The "New Project" wizard offers only Java. 
JavaFX, Maven, NetBeans Modules, and Samples. Plugin wizard offers nothing I can find for 
Java web development.

So, I'm scratching my head wondering what I missed.



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

For further information about the NetBeans mailing lists, visit:
https://urldefense.proofpoint.com/v2/url?u=https-3A__cwiki.apache.org_confluence_display_NETBEANS_Mailing-2Blists=DwICaQ=RoP1YumCXCgaWHvlZYR8PZh8Bv7qIrMUB65eapI_JnE=mbDljLosYPdmZgPL2qzX-pjBv_4xnxXEWOeG1_Zdqm8=YknUASaU_WtIW1sytmPcVZpeJKEZLf3nG3rmSg7kaCQ=A4AgBsdBrdJsBNGGn2khrpYmSNsIDfWIRhJA7d2n70Q=




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

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



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

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



Re: Running local build under JDK 9?

2018-01-07 Thread Antonio

On Unix like systems:

cd /the/netbeans/directory
ant
./nbbuild/netbeans/bin/netbeans --jdkhome /the/path/to/jdk9/

Cheers,
Antonio


On 08/01/18 06:33, cowwoc wrote:
Following up on https://issues.apache.org/jira/browse/NETBEANS-238 is 
there a way to get "ant tryme" to use JDK 9 instead of JDK 8? This is 
needed for verifying fixes to bugs prior to merging.


Thank you,
Gili


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

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



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

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