Re: NetBeans Development Setup

2019-05-20 Thread Geertjan Wielenga
OK, it's time to make a new and maybe more complete and simpler version of those YouTube videos -- if you can list what should be in that, and what was confusing, that will help in putting it together, also what you found helpful in the videos. When you have a moment, but no rush. Gj On Tue, May

Re: NetBeans Development Setup

2019-05-20 Thread Lou H
Yup, I've gone over it a few times. My concerns were from the video not exactly matching what I was seeing. I believe I've been able to get things working - just a little uncertainty. -Lou ‐‐‐ Original Message ‐‐‐ On Tuesday, May 21, 2019 1:44 AM, Geertjan Wielenga wrote: > See the RE

Re: [VOTE] Apache NetBeans 11.0 Gradle Patch 1 Release

2019-05-20 Thread Antonio
+1 - SHA & PGP keys are ok with keys at [1] - Builds OK. Maybe we want to add a flag to the "unzip" of the patch so that it overwrites everything ("-o overwrite files WITHOUT prompting ")? - verify-libs-and-licenses reports 2 errors out of 5, but I think these are unrelated to the patch. Aga

Re: [VOTE] Release Apache NetBeans mavenutilities parent pom 1 - take 2

2019-05-20 Thread Geertjan Wielenga
+1 Gj On Tue, May 21, 2019 at 7:28 AM Antonio wrote: > +1 > > Thanks, Eric! > > El 20/5/19 a las 10:57, Eric Barboni escribió: > > > https://dist.apache.org/repos/dist/dev/netbeans/netbeans-maven-utilities/uti > > lities-parent/utilities-parent-1/take2 > > --

Re: NetBeans Development Setup

2019-05-20 Thread Geertjan Wielenga
See the README, always, first: https://github.com/apache/netbeans/blob/master/README.md Tells you about how to build. I'd recommend you then simply open the module you want to work on, make your changes, and then run that module, which will start up your built NetBeans and which will install the

Re: [VOTE] Release Apache NetBeans mavenutilities parent pom 1 - take 2

2019-05-20 Thread Antonio
+1 Thanks, Eric! El 20/5/19 a las 10:57, Eric Barboni escribió: https://dist.apache.org/repos/dist/dev/netbeans/netbeans-maven-utilities/uti lities-parent/utilities-parent-1/take2 - To unsubscribe, e-mail: dev-unsubscr...@net

Re: [VOTE] Apache NetBeans 11.0 Gradle Patch 1 Release

2019-05-20 Thread Kai Uwe Pel
+1 Best regards, Kai On 5/20/2019 4:08 AM, Laszlo Kishalmi wrote: Dear all, I'd like to call a vote on our first patch release under Apache. Please see the the details on this release on our Wiki: https://cwiki.apache.org/confluence/display/NETBEANS/Apache+NetBeans+11.0+Gradle+Patch+1 The s

Re: NetBeans Development Setup

2019-05-20 Thread Lou H
A few questions/observations: 1- How to do the Ant build wasn't mentioned, I did it like this: "ant -Dcluster.config=full". Build was done with a user.build.properties file inside netbeans/nbbuild containing "nbjdk.home=/home/lou/jdk/jdk8u212-b03" (latest OpenJDK). Correct? 2- When adding a ne

Re: NetBeans Development Setup

2019-05-20 Thread Lou H
Not sure how I missed that, relying on the GitHub readme too much I guess. I'll take a look, thanks! -Lou Sent with ProtonMail Secure Email. ‐‐‐ Original Message ‐‐‐ On Monday, May 20, 2019 4:27 PM, Patrik Karlström wrote: > Have a look at > http://netbeans.apache.org/participate/bui

Re: NetBeans Development Setup

2019-05-20 Thread Patrik Karlström
Have a look at http://netbeans.apache.org/participate/build-run-debug-tutorials.html Den mån 20 maj 2019 kl 22:21 skrev Lou H : > I've been looking for guidelines or instructions on how to set up for NB > development & debugging (inside NB), but it's difficult to search on > "compiling/building n

NetBeans Development Setup

2019-05-20 Thread Lou H
I've been looking for guidelines or instructions on how to set up for NB development & debugging (inside NB), but it's difficult to search on "compiling/building netbeans within netbeans" without getting hits on... everything but that. How would you get started setting up a productive dev enviro

Re: Request for Help : Java Hint to enable Preview feature in gradle project

2019-05-20 Thread Laszlo Kishalmi
Well, In Gradle you need to add the '--enable-preview' jvm arg to multiple places in Gradle (compiler, test runner, and the Java Exec itself). The most elegant way doing that is adding a plugin to the Gradle project which takes care of the internals. The plugin can be a public one (I'd proba

Re: Proposal Review Request - Hibernate plugin improvements

2019-05-20 Thread Geertjan Wielenga
Awesome. This looks great. If we can somehow release support for Hibernate without having GPL code or binaries in our repo, that’s great. No need for a vote on this, just create the issue, make it happen, and provide the pull request. Gj On Mon, 20 May 2019 at 15:46, Vadiraj Deshpande wrote: >

Proposal Review Request - Hibernate plugin improvements

2019-05-20 Thread Vadiraj Deshpande
Dear Apache NetBeans Community members, I would like to request your thoughts/feedback on the following improvements and the bug fixes for the NetBeans Hibernate plugin. I was one of the initial author (some 10 years ago) of the plugin and since then many things have changed and I think now it'

Re: Request for Help : Java Hint to enable Preview feature in gradle project

2019-05-20 Thread Geertjan Wielenga
Good point. :-) Gj On Mon, 20 May 2019 at 13:36, Neil C Smith wrote: > On Mon, 20 May 2019 at 12:10, Geertjan Wielenga > wrote: > > Not sure either, but if there’s no way (Laszlo might be able to advise > > here) to set “enable-preview” on project level, then global (at least as > a > > fallba

Re: Request for Help : Java Hint to enable Preview feature in gradle project

2019-05-20 Thread Neil C Smith
On Mon, 20 May 2019 at 12:10, Geertjan Wielenga wrote: > Not sure either, but if there’s no way (Laszlo might be able to advise > here) to set “enable-preview” on project level, then global (at least as a > fallback) would seem to be the only way to go. I was suggesting (badly) that somewhere in

Re: Request for Help : Java Hint to enable Preview feature in gradle project

2019-05-20 Thread Geertjan Wielenga
Not sure either, but if there’s no way (Laszlo might be able to advise here) to set “enable-preview” on project level, then global (at least as a fallback) would seem to be the only way to go. Gj On Mon, 20 May 2019 at 12:24, Neil C Smith wrote: > On Mon, 20 May 2019 at 11:12, Geertjan Wieleng

Re: Request for Help : Java Hint to enable Preview feature in gradle project

2019-05-20 Thread Neil C Smith
On Mon, 20 May 2019 at 11:12, Geertjan Wielenga wrote: > Maybe read “enable-preview” as a fallback in netbeans.conf? I.e., if not > set anywhere else, check in netbeans.conf for -J-Denable-preview and, if > present, apply to all Java projects, which would include Gradle projects? If you really wa

Re: Request for Help : Java Hint to enable Preview feature in gradle project

2019-05-20 Thread Geertjan Wielenga
Maybe read “enable-preview” as a fallback in netbeans.conf? I.e., if not set anywhere else, check in netbeans.conf for -J-Denable-preview and, if present, apply to all Java projects, which would include Gradle projects? Not 100% sure, but just an idea. Gj On Mon, 20 May 2019 at 11:47, Arunava S

RE: [VOTE] Apache NetBeans 11.0 Gradle Patch 1 Release

2019-05-20 Thread Eric Barboni
+1 But there is a DISCLAMER in the nbm. That it's not needed now. SHA,checksum,Pgp ok Buildability on wsl ok I'm not a graddle user so I Cannot do functional testing. " unzip netbeans-11.0-gradle-patch-1-source.zip -o -d nb-gradle-patch-1" was not working as is. IT's supposed to overwrite, righ

Re: Request for Help : Java Hint to enable Preview feature in gradle project

2019-05-20 Thread Arunava Sinha
Hi, I tried org.gradle.jvmargs=--enable-preview. It didn't worked. Considering the scenarios as there and n number of ways to specify jvm parms for compilation/run and also currently support is not present to read/write gradle configuration from the plugin. I would choose to not provide the h

[VOTE] Release Apache NetBeans mavenutilities parent pom 1 - take 2

2019-05-20 Thread Eric Barboni
Dear members of Apache NetBeans community. I want to call a vote on releasing Apache NetBeans utilities parent pom version 1. This is second attempt. Sections with explicit dev/contributor removed to get potential contributor to d...@netbean.apache.org This is a maven pom containing information a

Re: Users banned from apache.org due to downloading updates.xml.gz

2019-05-20 Thread Bertrand Delacretaz
On Sat, May 18, 2019 at 6:50 PM Tim Boudreau wrote: > ...This kind of thing is truly a job for a CDN... It looks like ASF Infra is starting to use CDNs like https://issues.apache.org/jira/browse/INFRA-18180 for example. That's certainly something to take into account when talking to them...but s