Re: Aligning implementation and specification versions?
+1 - I recently found that to have a preview for a formatter requires a friend dependency, which is ridiculous given that the API has not changed in many years. -Tim On Wed, Sep 25, 2019 at 7:29 AM Neil C Smith wrote: > On Sun, 25 Aug 2019 at 19:06, Jesse Glick wrote: > > A long time ago I wrote up > > http://wiki.netbeans.org/NbmPackageStability to discuss problems with > > the versioning scheme in NB and propose a different system. At this > > point I would say that the proposed change is unnecessarily complex, > > and that better development practices would avoid most problems: > > Missed this reply at the time - just found it looking for this thread. > I like the proposal you wrote, and argued for considering it when > there was a vote a while back on what to do with friend dependencies. > Not that that vote really led to much conclusive. I personally > probably agree with your assessment on the complexity, and the > suggestions seem good - in particular > > > · Use simple specification version dependencies, and mark all packages > > public which you would expect any other modules to refer to. > > ... yes, please let's just do this for NB 11.3 in preparation for next > LTS! The active PRs to add friend access for third-party plugins are > just wrong on so many levels. Let's keep friends only for the > minority of legitimate cases where a module has optional extensions > that need to be separate. > > Best wishes, > > Neil > > - > To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org > For additional commands, e-mail: dev-h...@netbeans.apache.org > > For further information about the NetBeans mailing lists, visit: > https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists > > > > -- http://timboudreau.com
Re: Building NetBeans 11.1 from source fails with compile errors
P.S. Looking at previous lines of the output it seems it is still trying to use JDK9 (I don't know why): https://susepaste.org/293ef8aa - To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org For additional commands, e-mail: dev-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
Re: Building NetBeans 11.1 from source fails with compile errors
OK, so I started from scratch and ran as you said: export JAVA_HOME=/usr/lib64/jvm/java-1.8.0-openjdk-1.8.0/ echo 'nbjdk.home=/usr/lib64/jvm/java-1.8.0-openjdk-1.8.0' > ~/user.build.properties ant -Dcluster.config=full The build started but failed again after a while. Here is a shorter output (last lines only): https://susepaste.org/b0c6347f What am I missing? - To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org For additional commands, e-mail: dev-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
Re: Building NetBeans 11.1 from source fails with compile errors
Hi, Am Mittwoch, den 02.10.2019, 23:59 +0300 schrieb Sahin gülci: > error: Source option 6 is no longer supported. Use 7 or later. > error: Target option 6 is no longer supported. Use 7 or later. you try to build with a JDK, that does not support Source version 6 anymore. That would be JDK 12 and newer. Please compile netbeans with JDK 8 or 11. Greetings Matthias - To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org For additional commands, e-mail: dev-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
Re: Building NetBeans 11.1 from source fails with compile errors
Hi Matthias, I added user.build.properties for jdk 8, now I have error like this --> https://gist.github.com/sgulci/cad916b9f0a716978bffea028c79496c Basically says this : Cannot translate according to [file:/home/sahin/NetBeansProjects/netbeans/platform/openide.filesystems/module-auto-deps.xml, file:/home/sahin/NetBeansProjects/netbeans/platform/openide.modules/module-auto-deps.xml, file:/home/sahin/NetBeansProjects/netbeans/platform/openide.util/module-auto-deps.xml] because could not find /home/sahin/NetBeansProjects/netbeans/nbbuild/netbeans/platform/core/core.jar platform/core.startup.base.init: All tests passed platform/core.startup.base.up-to-date: platform/core.startup.base.compile: Compiling 11 source files to /home/sahin/NetBeansProjects/netbeans/platform/core.startup.base/build/classes error: Source option 6 is no longer supported. Use 7 or later. error: Target option 6 is no longer supported. Use 7 or later. Failed to build target: all-core.startup.base On Wed, Oct 2, 2019 at 11:27 PM Matthias Bläsing wrote: > Hi, > > Am Mittwoch, den 02.10.2019, 23:21 +0300 schrieb Sahin gülci: > > Hi All, > > > > I can't build Netbeans from master branch either, my error logs -> > > https://gist.github.com/sgulci/cad916b9f0a716978bffea028c79496c > > On attachment, my Netbeans Build System picture shows error on my > > Netbeans > > (this is wiki that I tried > > > https://cwiki.apache.org/confluence/display/NETBEANS/Development+Environment > > ) > > > > Probably my configuration is wrong > > > > No, you just did not see the error - the relevant part of the log: > > [...] > Downloading: > http://central.maven.org/maven2/javaee/javaee-api/5/javaee-api-5.jar > Could not download > E3CC17B10AB552219EDBE33915E62937E387D0EF-javaee-api-5.jar to > /home/sahin/.hgexternalcache/E3CC17B10AB552219EDBE33915E62937E387D0EF-javaee-api-5.jar: > java.io.IOException: Cannot connect to > http://central.maven.org/maven2/javaee/javaee-api/5/javaee-api-5.jar > [...] > /home/sahin/NetBeansProjects/netbeans/nbbuild/build.xml:209: Failed to > download binaries - see log message for the detailed reasons. > BUILD FAILED (total time: 21 minutes 49 seconds) > [...] > > I read this: "Hey user, your internet connection was down for a few > seconds and I failed to fetch a file". A second run, should be faster, > as not so many files need to be fetched again. > > HTH > > Matthias > > > - > To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org > For additional commands, e-mail: dev-h...@netbeans.apache.org > > For further information about the NetBeans mailing lists, visit: > https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists > > > >
Re: Building NetBeans 11.1 from source fails with compile errors
Hi, Am Mittwoch, den 02.10.2019, 23:40 +0300 schrieb mlist: > On Wed, 02 Oct 2019 22:12:42 +0200 Matthias Bläsing wrote: > > > you are building with JDK11 against an JDK8 by setting nbjdk.home. I > > fixed this for me by switching to JDK8 as the build JDK. > > > > My .nbbuild.properties has this entry: > > Is that the same as src/nbbuild/user.build.properties or (if not) where > do you put this file? it is an alternative with the same syntax, just read from the home directory (I regularly clean my build directory and the user.build.properties get removed to then) > > nbjdk.home=/home/matthias/bin/jdk1.8.0_201/ > > > > To build with that setting, prior to runnign the ant build, I set the > > JAVA_HOME to the same directory: > > > > export JAVA_HOME=/home/matthias/bin/jdk1.8.0_201/ > > > > and then run ant. > > Have you looked at my output? I am also setting: Yes, and no I did not read all 12.500 lines. Did you? > JAVA_HOME=${JAVA_HOME}:/usr/lib64/jvm/java-1.8.0-openjdk-1.8.0/bin > > Isn't that enough? It sets the variable for the current shell, but it will not propagate to subprocesses. What is more, I have never seen JAVA_HOME set like a search path and it never contains the bin directory. So in your case I would set JAVA_HOME as: export JAVA_HOME=/usr/lib64/jvm/java-1.8.0-openjdk-1.8.0/ > Do you have 'bin' subdir in your 'jdk1.8.0_201' dir? Or is your javac > directly in 'jdk1.8.0_201'? > > That way I get a netbeans build with JDK8, as is our current build > > configuration. > > BTW I found some answer here on the list (from 09.Aug.2019) which says > that using -Dpermit.jdk9.builds=true works and I tried it - it works > indeed (build succeeds). Is that wrong and why? That option allows you to build with a JDK 9 and newer. While netbeans can be build with JDK 9, that is not the production configuration, so you could introduce dependencies on newer implementations without realising it, before the problem is caught by the CI pipeline. HTH Matthias - To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org For additional commands, e-mail: dev-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
Re: Building NetBeans 11.1 from source fails with compile errors
On Wed, 02 Oct 2019 22:12:42 +0200 Matthias Bläsing wrote: > you are building with JDK11 against an JDK8 by setting nbjdk.home. I > fixed this for me by switching to JDK8 as the build JDK. > > My .nbbuild.properties has this entry: Is that the same as src/nbbuild/user.build.properties or (if not) where do you put this file? > nbjdk.home=/home/matthias/bin/jdk1.8.0_201/ > > To build with that setting, prior to runnign the ant build, I set the > JAVA_HOME to the same directory: > > export JAVA_HOME=/home/matthias/bin/jdk1.8.0_201/ > > and then run ant. Have you looked at my output? I am also setting: JAVA_HOME=${JAVA_HOME}:/usr/lib64/jvm/java-1.8.0-openjdk-1.8.0/bin Isn't that enough? Do you have 'bin' subdir in your 'jdk1.8.0_201' dir? Or is your javac directly in 'jdk1.8.0_201'? > That way I get a netbeans build with JDK8, as is our current build > configuration. BTW I found some answer here on the list (from 09.Aug.2019) which says that using -Dpermit.jdk9.builds=true works and I tried it - it works indeed (build succeeds). Is that wrong and why? Sorry for the many questions. I hope you can answer :) - To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org For additional commands, e-mail: dev-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
Re: Building NetBeans 11.1 from source fails with compile errors
Hi, Am Mittwoch, den 02.10.2019, 23:21 +0300 schrieb Sahin gülci: > Hi All, > > I can't build Netbeans from master branch either, my error logs -> > https://gist.github.com/sgulci/cad916b9f0a716978bffea028c79496c > On attachment, my Netbeans Build System picture shows error on my > Netbeans > (this is wiki that I tried > https://cwiki.apache.org/confluence/display/NETBEANS/Development+Environment > ) > > Probably my configuration is wrong > No, you just did not see the error - the relevant part of the log: [...] Downloading: http://central.maven.org/maven2/javaee/javaee-api/5/javaee-api-5.jar Could not download E3CC17B10AB552219EDBE33915E62937E387D0EF-javaee-api-5.jar to /home/sahin/.hgexternalcache/E3CC17B10AB552219EDBE33915E62937E387D0EF-javaee-api-5.jar: java.io.IOException: Cannot connect to http://central.maven.org/maven2/javaee/javaee-api/5/javaee-api-5.jar [...] /home/sahin/NetBeansProjects/netbeans/nbbuild/build.xml:209: Failed to download binaries - see log message for the detailed reasons. BUILD FAILED (total time: 21 minutes 49 seconds) [...] I read this: "Hey user, your internet connection was down for a few seconds and I failed to fetch a file". A second run, should be faster, as not so many files need to be fetched again. HTH Matthias - To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org For additional commands, e-mail: dev-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
Re: Building NetBeans 11.1 from source fails with compile errors
Hi All, I can't build Netbeans from master branch either, my error logs -> https://gist.github.com/sgulci/cad916b9f0a716978bffea028c79496c On attachment, my Netbeans Build System picture shows error on my Netbeans (this is wiki that I tried https://cwiki.apache.org/confluence/display/NETBEANS/Development+Environment ) Probably my configuration is wrong On Wed, Oct 2, 2019 at 11:07 PM mlist wrote: > Hi, > > I am trying to build NetBeans 11.1 from source code on openSUSE Leap > 15. I have read the instructions and the README.md but unfortunately I > am getting errors which I don't know how to fix as I am not a Java > developer (my intention is to use NetBeans IDE for PHP, CSS, > JavaScript). > > Here is the output I am getting: > > https://susepaste.org/673abb68 > > What should I do to make this work please? > > - > To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org > For additional commands, e-mail: dev-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: dev-unsubscr...@netbeans.apache.org For additional commands, e-mail: dev-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
Re: Building NetBeans 11.1 from source fails with compile errors
Hi, Am Mittwoch, den 02.10.2019, 23:06 +0300 schrieb mlist: > > I am trying to build NetBeans 11.1 from source code on openSUSE Leap > 15. I have read the instructions and the README.md but unfortunately > I > am getting errors which I don't know how to fix as I am not a Java > developer (my intention is to use NetBeans IDE for PHP, CSS, > JavaScript). > > Here is the output I am getting: > > https://susepaste.org/673abb68 > > What should I do to make this work please? > you are building with JDK11 against an JDK8 by setting nbjdk.home. I fixed this for me by switching to JDK8 as the build JDK. My .nbbuild.properties has this entry: nbjdk.home=/home/matthias/bin/jdk1.8.0_201/ To build with that setting, prior to runnign the ant build, I set the JAVA_HOME to the same directory: export JAVA_HOME=/home/matthias/bin/jdk1.8.0_201/ and then run ant. That way I get a netbeans build with JDK8, as is our current build configuration. Greetings Matthias - To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org For additional commands, e-mail: dev-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
Building NetBeans 11.1 from source fails with compile errors
Hi, I am trying to build NetBeans 11.1 from source code on openSUSE Leap 15. I have read the instructions and the README.md but unfortunately I am getting errors which I don't know how to fix as I am not a Java developer (my intention is to use NetBeans IDE for PHP, CSS, JavaScript). Here is the output I am getting: https://susepaste.org/673abb68 What should I do to make this work please? - To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org For additional commands, e-mail: dev-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
Re: Handling nb-javac in 11.2
Perfect. Gj On Wed, 2 Oct 2019 at 20:15, Neil C Smith wrote: > Hi, > > OK, the PR is merged in and synced across to the release branch. > However, a few other glitches to sort on Jenkins and having to wait a > long time to be scheduled, so looking like beta2 will be tomorrow at > least. > > Best wishes, > > Neil > > On Wed, 2 Oct 2019 at 12:02, Neil C Smith wrote: > > > > On Wed, 2 Oct 2019 at 10:53, Jan Lahoda wrote: > > > > > > Hi, talking this through with Jiří, the proposal is to go with the > internal NBMs (i.e. my PR) for beta 2. Jiří will ask if NetCat could test > it, and if there are problems, we will know and revert back to a separate > update center (i.e. Jiří's PR). > > > > > > How does this sound? > > > > Great! Sounds good to me. My favourite option in release phase is > > obviously no change at all! ;-) But as we need a change of some sort, > > doing it like this sounds best. > > > > I'll merge and finish up preparing the release branch for beta2 build. > > Hopefully can announce that by end of the day. > > > > Thanks and best wishes, > > > > Neil > > - > To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org > For additional commands, e-mail: dev-h...@netbeans.apache.org > > For further information about the NetBeans mailing lists, visit: > https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists > > > >
Re: Handling nb-javac in 11.2
Hi, OK, the PR is merged in and synced across to the release branch. However, a few other glitches to sort on Jenkins and having to wait a long time to be scheduled, so looking like beta2 will be tomorrow at least. Best wishes, Neil On Wed, 2 Oct 2019 at 12:02, Neil C Smith wrote: > > On Wed, 2 Oct 2019 at 10:53, Jan Lahoda wrote: > > > > Hi, talking this through with Jiří, the proposal is to go with the internal > > NBMs (i.e. my PR) for beta 2. Jiří will ask if NetCat could test it, and if > > there are problems, we will know and revert back to a separate update > > center (i.e. Jiří's PR). > > > > How does this sound? > > Great! Sounds good to me. My favourite option in release phase is > obviously no change at all! ;-) But as we need a change of some sort, > doing it like this sounds best. > > I'll merge and finish up preparing the release branch for beta2 build. > Hopefully can announce that by end of the day. > > Thanks and best wishes, > > Neil - To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org For additional commands, e-mail: dev-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.2-beta1: broken pom.xml files editing
You can remove the ergonomic cluster from etc/netbeans.clusters, that make the other clusters activated by default. On 10/2/19 2:19 AM, Alessandro wrote: Solved, my mistake. The second NetBeans instance had unactivated features, once I activated the JavaSE feature all went to normal. Is there a way to launch a NetBeans with some features pre-activated? Regards, Alex Il giorno mar 1 ott 2019 alle ore 16:08 Alessandro ha scritto: On further investigation this is less severe, it happens in a NetBeans 11.2-beta1 instance launched from another NetBeans 11.2-beta1 instance from a Maven NetBeans Module project. Maven projects open just fine in the parent instance and pom.xml files are edited via the specialized editor in it. It is however annoying as it impacts developing NetBeans plugins. Apologise for the alarming head-up. Regards, Alex Il giorno mar 1 ott 2019 alle ore 15:56 Geertjan Wielenga < geert...@apache.org> ha scritto: Can you reproduce the issue with fresh userdir and cachedir? Gj On Tue, 1 Oct 2019 at 15:55, Alessandro wrote: Hi all, I have just realized that with NetBeans 11.2-beta1 pom.xml files are opened in a vanilla XML editor instead of the specialized POM editor. This is a major regression in my opinion cause we loose code templates, groupId/artifactId/version completion for dependencies, code generation, effective POM inspection, POM dependency graph etc. Can anyone confirm? I also see a new "Open Advanced..." menu item in the context menu of a pom.xml file in Project view that does nothing. Should I open an issue on JIRA? Regards, Alex - To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org For additional commands, e-mail: dev-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
Module build fails in IDE but works on command line
I have been trying to compile the ide/utilities module from within Netbeans 11.1 but it fails with an error related to api signature failing (error pasted below). The same module compiles fine if I call ant build on the command line in the module directory. In both the cases I have used the same ant binary that Netbeans uses and my repo is currently at master (101c870) with no changes. I am running Netbeans on JDK 11. On command line, ant runs on JDK 8 Regards Siddhesh Rane --- ERROR SNIPPET --- Detected Java version: 11 in: /home/siddhesh/Applications/jdk-11.0.1 Detected OS: Linux ... -sigtest-init: Skipping /home/siddhesh/NetBeansProjects/netbeans/ide/utilities/nbproject because it already exists. Property "spec.version.base" has not been set Set property sigtest.class.path = /home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/modules/org-netbeans-modules-queries.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/core/org-openide-filesystems.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/lib/org-openide-util.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/lib/org-openide-util-lookup.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/modules/org-netbeans-modules-sendopts.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/lib/boot.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/lib/org-openide-modules.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/lib/org-openide-util-ui.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/modules/org-openide-actions.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/modules/org-openide-awt.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/modules/org-netbeans-api-annotations-common.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/modules/org-openide-dialogs.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/modules/org-netbeans-api-progress.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/modules/org-netbeans-api-progress-nb.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/modules/org-openide-explorer.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/modules/org-netbeans-swing-outline.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/modules/org-netbeans-swing-tabcontrol.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/modules/org-openide-windows.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/modules/org-openide-nodes.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/modules/org-openide-text.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/modules/org-netbeans-modules-editor-mimelookup.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/modules/org-openide-filesystems-nb.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/modules/org-openide-io.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/modules/org-netbeans-api-intent.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/modules/org-netbeans-api-io.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/modules/org-openide-loaders.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/modules/org-netbeans-api-scripting.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/platform/modules/org-netbeans-api-templates.jar:/home/siddhesh/NetBeansProjects/netbeans/nbbuild/netbeans/ide/modules/org-netbeans-modules-utilities.jar Property "sigtest.skip.check" has not been set Property "sigtest.gen.fail.on.error" has not been set Found: nbproject/org-netbeans-modules-utilities.sig Property "commit.mail" has not been set Override ignored for property "sigtest.mail" sigtest check: ide/utilities; cnb: org-netbeans-modules-utilities; email: api-chan...@netbeans.org; type: check check-sigtest: Skipping /home/siddhesh/NetBeansProjects/netbeans/ide/utilities/build/test/sigtest/results because it already exists. /home/siddhesh/NetBeansProjects/netbeans/ide/utilities/build/test/sigtest/results/org.netbeans.modules.utilities Packages: org.netbeans.modules.openfile.*, org.netbeans.modules.search.* email: api-chan...@netbeans.org SignatureTest report Base version: 1.66 Tested version: 1.67 Check mode: bin [throws removed] Constant checking: on Class org.netbeans.modules.openfile.PackagePanel "E1.2 - API type removed" : method public java.awt.peer.ComponentPeer java.awt.Component.getPeer() anno 0 java.lang.Deprecated() /home/siddhesh/NetBeansProjects/netbeans/ide/utilities/build/test/sigtest/results/org-netbeans-modules-utilities.xml: 1 failures in /home/siddhesh/NetBeansProjects/netbeans/ide/utilities/nbproject/org-netbeans-modules-utilities.sig /home/siddhesh/NetBean
Re: Handling nb-javac in 11.2
On Wed, 2 Oct 2019 at 10:53, Jan Lahoda wrote: > > Hi, talking this through with Jiří, the proposal is to go with the internal > NBMs (i.e. my PR) for beta 2. Jiří will ask if NetCat could test it, and if > there are problems, we will know and revert back to a separate update center > (i.e. Jiří's PR). > > How does this sound? Great! Sounds good to me. My favourite option in release phase is obviously no change at all! ;-) But as we need a change of some sort, doing it like this sounds best. I'll merge and finish up preparing the release branch for beta2 build. Hopefully can announce that by end of the day. Thanks and best wishes, Neil - To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org For additional commands, e-mail: dev-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
Re: Handling nb-javac in 11.2
I like it! Gj On Wed, 2 Oct 2019 at 11:53, Jan Lahoda wrote: > Hi, talking this through with Jiří, the proposal is to go with the > internal NBMs (i.e. my PR) for beta 2. Jiří will ask if NetCat could test > it, and if there are problems, we will know and revert back to a separate > update center (i.e. Jiří's PR). > > How does this sound? > > Jan > > > 1. října 2019 22:15:26 SELČ, Neil C Smith napsal: > >On Tue, 1 Oct 2019, 20:41 Jan Lahoda, wrote: > > > >> I'll try to talk about this tomorrow with Jiri, but I am > >> afraid it won't be in the morning, rather sometime before noon. > >> > > > >:-) That would be great. Anytime tomorrow is great, really. Otherwise > >I'll > >delay beta2 until the weekend so whatever solution we have gets in and > >gets > >some testing. > > > >Thanks and best wishes, > > > >Neil > > > >> > > -- > Odesláno aplikací K-9 Mail ze systému Android. Omluvte prosím moji > stručnost.
[VOTE] Release Apache NetBeans utilities harness version 11.1
Dear members of Apache NetBeans community. I want to call a vote on releasing Apache NetBeans utilities harness version 11.1 This is a library built using maven artefacts Apache NetBeans RELEASE111 (making version jump to match) to make tools for nbm-maven-plugin Contains almost no sources by itself except a placeholder . Harness contains a wrong configuration file that is changed on release111 that is fixed on https://github.com/apache/netbeans/commit/e124ee61512a483cc79932269850785f06 9c59ba The voting artefacts sources are located here: https://dist.apache.org/repos/dist/dev/netbeans/netbeans-maven-utilities/nbm -maven-harness/nbm-maven-harness-11.1/ In addition to that the Maven artifacts built from https://github.com/apache/netbeans-mavenutils-nbm-maven-harness with the commit id d634f0fd2777cfcc518a04efe8730e11e697dd86 (tag nbm-maven-harness-11.1) are staged in the following repository: https://repository.apache.org/content/repositories/orgapachenetbeans-1042/ Key file is here: https://www.apache.org/dist/netbeans/KEYS The vote is open for at least 72h. Best Regards Eric Barboni (skygo) - To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org For additional commands, e-mail: dev-h...@netbeans.apache.org For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
Re: Handling nb-javac in 11.2
Hi, talking this through with Jiří, the proposal is to go with the internal NBMs (i.e. my PR) for beta 2. Jiří will ask if NetCat could test it, and if there are problems, we will know and revert back to a separate update center (i.e. Jiří's PR). How does this sound? Jan 1. října 2019 22:15:26 SELČ, Neil C Smith napsal: >On Tue, 1 Oct 2019, 20:41 Jan Lahoda, wrote: > >> I'll try to talk about this tomorrow with Jiri, but I am >> afraid it won't be in the morning, rather sometime before noon. >> > >:-) That would be great. Anytime tomorrow is great, really. Otherwise >I'll >delay beta2 until the weekend so whatever solution we have gets in and >gets >some testing. > >Thanks and best wishes, > >Neil > >> -- Odesláno aplikací K-9 Mail ze systému Android. Omluvte prosím moji stručnost.
Re: NetBeans 11.2-beta1: broken pom.xml files editing
Solved, my mistake. The second NetBeans instance had unactivated features, once I activated the JavaSE feature all went to normal. Is there a way to launch a NetBeans with some features pre-activated? Regards, Alex Il giorno mar 1 ott 2019 alle ore 16:08 Alessandro ha scritto: > On further investigation this is less severe, it happens in a NetBeans > 11.2-beta1 instance launched from another NetBeans 11.2-beta1 instance from > a Maven NetBeans Module project. Maven projects open just fine in the > parent instance and pom.xml files are edited via the specialized editor in > it. > > It is however annoying as it impacts developing NetBeans plugins. > > Apologise for the alarming head-up. > > Regards, > Alex > > Il giorno mar 1 ott 2019 alle ore 15:56 Geertjan Wielenga < > geert...@apache.org> ha scritto: > >> Can you reproduce the issue with fresh userdir and cachedir? >> >> Gj >> >> On Tue, 1 Oct 2019 at 15:55, Alessandro wrote: >> >> > Hi all, >> > I have just realized that with NetBeans 11.2-beta1 pom.xml files are >> > opened in a vanilla XML editor instead of the specialized POM editor. >> > >> > This is a major regression in my opinion cause we loose code templates, >> > groupId/artifactId/version completion for dependencies, code generation, >> > effective POM inspection, POM dependency graph etc. >> > >> > Can anyone confirm? >> > >> > I also see a new "Open Advanced..." menu item in the context menu of a >> > pom.xml file in Project view that does nothing. >> > >> > Should I open an issue on JIRA? >> > >> > Regards, >> > Alex >> > >> >