RE: Re: Clarify how to use locally built platform with maven

2019-11-20 Thread Eric Barboni
: Re: Clarify how to use locally built platform with maven Don’t suppose any of this would help... https://maven.apache.org/guides/introduction/introduction-to-repositories.html Eric Bresie ebre...@gmail.com > On November 19, 2019 at 5:30:39 AM CST, Dmitry Avtonomov > wrote: > Hi Eric,

Re: Re: Clarify how to use locally built platform with maven

2019-11-19 Thread Eric Bresie
ix) outside org.netbeans so keep org.netbeans group for your > > own release. > > > > Best Regards > > Eric > > > > > > -Message d'origine- > > De : Tim Boudreau > > Envoyé : mardi 19 novembre 2019 03:02 > > À : dev@netbeans.apac

Re: Clarify how to use locally built platform with maven

2019-11-19 Thread Dmitry Avtonomov
our > own release. > > Best Regards > Eric > > > -Message d'origine- > De : Tim Boudreau > Envoyé : mardi 19 novembre 2019 03:02 > À : dev@netbeans.apache.org > Objet : Re: Clarify how to use locally built platform with maven > > Regardless, all you have

RE: Clarify how to use locally built platform with maven

2019-11-19 Thread Eric Barboni
locally built platform with maven Regardless, all you have to do is set it in the parent pom (ideally with a good section with everything you're going to use), and then if the IDE adds to anything, delete it (really, I think the dependency adding feature should detect if the library is already

Re: Clarify how to use locally built platform with maven

2019-11-18 Thread Tim Boudreau
Regardless, all you have to do is set it in the parent pom (ideally with a good section with everything you're going to use), and then if the IDE adds to anything, delete it (really, I think the dependency adding feature should detect if the library is already referenced from the parent's

Re: Clarify how to use locally built platform with maven

2019-11-18 Thread Dmitry Avtonomov
Thanks for the suggestion John, I tried both buttons - nothing worked for me. I also tried building the complete NBP: *ant -Dcluster.config=full build-nozip build-nbms build-source-zips build-javadoc* Tried building just the platform: *ant -Dcluster.config=platform build-nozip build-nbms

Re: Clarify how to use locally built platform with maven

2019-11-17 Thread John Neffenger
On 11/17/19 2:06 AM, Dmitry Avtonomov wrote: I did do that - there's a button to re-index maven repos afair. If that's the button in the Options under Java > Maven, I think that just pulls down the latest list from Maven Central again. Instead, open the Services Window (Ctrl-5), expand

Re: Clarify how to use locally built platform with maven

2019-11-17 Thread Dmitry Avtonomov
I did do that - there's a button to re-index maven repos afair. I'll try again from scratch tomorrow. On Sun, Nov 17, 2019 at 1:06 AM Tim Boudreau wrote: > I think it won’t show up until NetBeans’s reindexes your local repository. > They eventually did for me. There may be a way to force it to

Re: Clarify how to use locally built platform with maven

2019-11-17 Thread Tim Boudreau
I think it won’t show up until NetBeans’s reindexes your local repository. They eventually did for me. There may be a way to force it to in the options dialog (or delete the cache dir so it has to). -Tim On Sun, Nov 17, 2019 at 1:12 AM Dmitry Avtonomov < dmitriy.avtono...@gmail.com> wrote: >

Re: Clarify how to use locally built platform with maven

2019-11-16 Thread Dmitry Avtonomov
But we've been through that already, I did use the repo you're pointing to, I changed the version to RELEASE1234, it did build fine and I see all the stuff in my local m2 repo. Then I go to Netbeans IDE, create new maven nbp project, but the wizard only shows me the RELEASExxx that are found on

Re: Clarify how to use locally built platform with maven

2019-11-16 Thread Tim Boudreau
Use this. It will build NBMs of all NetBeans modules from a source checkout and populate your local repo with them. Just set the version number to something unique and use that in your dependencies (hopefully as a property set in one place). See the readme for details:

Re: Clarify how to use locally built platform with maven

2019-11-16 Thread Dmitry Avtonomov
I want to not be dependent on the platform nbms published to Central or any other online repository. I want to be able to clone NB sources from Github, disconnect from the internet, and create a maven-based platform app with just that. If the platform I build the app against ever becomes

Re: Clarify how to use locally built platform with maven

2019-11-15 Thread Tim Boudreau
If you mean, have a multi-module parent pom, and some way to run a module and have all its dependencies be found and included... as far as I know, there is simply no good way to do that with the nbm-maven-plugin - it is a glaring feature gap. The (painful) workaround is to create an

RE: Clarify how to use locally built platform with maven

2019-10-29 Thread Eric Barboni
so be nice. If you can expose your test project on github would be nice also. Best Regards Eric -Message d'origine- De : Dmitry Avtonomov Envoyé : lundi 28 octobre 2019 02:01 À : dev@netbeans.apache.org Objet : Clarify how to use locally built platform with maven Hello everyone, This is a co