Re: Packaging an nbm for maven

2019-11-08 Thread Ernie Rael

Hooray,
jVi is now available through the NB-11.2 update center. I've installed 
it, imported settings, seems to work.


Thanks to Matthias for his critical insight.
Thanks to Geertjan for pushing it through.
Thanks to Antonio, Jiří and others for their support.

Now the real fun starts... Lots of red when I open the jVi source.

-ernie

On 11/8/2019 1:48 PM, Ernie Rael wrote:

Doh! Just asked for 11.0 verification. Thanks Matthias.

-ernie

On 11/8/2019 1:30 PM, Matthias Bläsing wrote:

Hi,

this information is not correct. The NetBeans 11.2 Update Center for
user provided plugins still is supplied by http://plugins.netbeans.org/
  . You can verify this by trying to download:

https://netbeans.apache.org/nb/plugins/11.2/catalog.xml.gz

This redirects to:

http://plugins.netbeans.org/nbpluginportal/updates/11.0/catalog.xml.gz

TL;DR: To get a plugin installable via Update Center into 11.2, get it
verified for 11.0 and you should be done (unchecked, as I'm currently
not able to login).

Greetings

Matthias

Am Freitag, den 08.11.2019, 22:10 +0100 schrieb antonio:

Hi Ernie,

Some answers inlined below.

El 8/11/19 a las 21:33, Ernie Rael escribió:

I have an existing NBM plugin, built as a NB module project using
ant. I
have never used maven. As the following request for clarification
shows,
I do not have an overview sense of what is required.

1) Do I need to convert the NB module project to build using maven?
The
first step in "How to get plugin on Plugin Portal Update Center" is
"1.
Upload your plugin to Maven Central". The docs for "How to upload
NetBeans Modules to Maven Central say

 ...the steps that are involved in getting your maven artifacts
into
 the Maven Central...

This seems to imply that I need an NBM which is a maven artifact.

Yes, it's simpler if your Router Plugin Project is built using Maven.

  From the IDE choose "File/New Project", then "Java with Maven" and
then
"NetBeans Module" (or "NetBeans Application" if you want a suite).

You'll be shown a dialog with some settings, then choose the
appropriate
NetBeans version dependencies (unfortunately you'll see RELEASE110
and
dev-snapshot, but not RELEASE112 in the combo box, but you can
change
that later).

The IDE will then download lots of dependencies from Maven Central.
This
is normal.

THen just copy the source code from your ant-based plugin and
compile.
Maybe you need to add some extra dependencies to your "pom.xml" file
for
things to compile properly.

For a working example you can see, for instance, the Alex Falappa's
nb-springboot plugin at https://github.com/AlexFalappa/nb-springboot

If you upload this project somewhere (gitlab/github/etc.) I can give
a hand.


2) Or is the process one in which I package an existing NBM (built
as an
ant project)  into a maven artifact. Like a process done by
creating
files with an editor, maybe using the jar command as well.

3) Or perhaps it's a hybrid process. Built the NBM as usual with
ant,
then build something else which packages the NBM and creates a
maven
artifact.

The docs all assume I know how to get an NBM which is a maven
artifact;
at least that's how I read them. Unfortunately I do not know how to
do
that.

Once you've done that you'll end up with a NetBeans project that you
can
build with maven (instead of ant). The Maven infrastructure will
take
care of everything (very much like ant did).

Once you're ready to upload to Maven Central (i.e., you have proper
version numbers, etc.) see
http://maven.apache.org/repository/guide-central-repository-upload.html
for instructions on how to digitally sign and upload to Maven
Central.

We should document all this whole process better so people is not
confused any longer. Your questions do help us understand how badly
we're confusing things (for the better, we hope), so thanks for
asking! ;-).

Kind regards,
Antonio




-ernie

On 11/8/2019 10:41 AM, Geertjan Wielenga wrote:

An NBM can be uploaded to Maven and also added to the Plugin
Portal, not
sure if that helps, just wanting to help but not sure what you’re
asking.

Gj

On Fri, 8 Nov 2019 at 18:58, Ernie Rael  wrote:


Given an existing .nbm, is there a way to package it for maven
central,
and then add it the the new plugin portal without building the
.nbm's
project with maven?

I'm still looking at the documentation to cut my plugin over to
maven...
In the meantime, I'm looking for a way to satisfy some user
needs in a
timely fashion.

-ernie


-

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 

Re: Packaging an nbm for maven

2019-11-08 Thread antonio
Ah, thanks for the correction Matthias (and sorry for the confusion, 
Ernie), I thought this was already in place.


Cheers,
Antonio

El 8/11/19 a las 22:30, Matthias Bläsing escribió:

Hi,

this information is not correct. The NetBeans 11.2 Update Center for
user provided plugins still is supplied by http://plugins.netbeans.org/
  . You can verify this by trying to download:

https://netbeans.apache.org/nb/plugins/11.2/catalog.xml.gz

This redirects to:

http://plugins.netbeans.org/nbpluginportal/updates/11.0/catalog.xml.gz

TL;DR: To get a plugin installable via Update Center into 11.2, get it
verified for 11.0 and you should be done (unchecked, as I'm currently
not able to login).

Greetings

Matthias

Am Freitag, den 08.11.2019, 22:10 +0100 schrieb antonio:

Hi Ernie,

Some answers inlined below.

El 8/11/19 a las 21:33, Ernie Rael escribió:

I have an existing NBM plugin, built as a NB module project using
ant. I
have never used maven. As the following request for clarification
shows,
I do not have an overview sense of what is required.

1) Do I need to convert the NB module project to build using maven?
The
first step in "How to get plugin on Plugin Portal Update Center" is
"1.
Upload your plugin to Maven Central". The docs for "How to upload
NetBeans Modules to Maven Central say

 ...the steps that are involved in getting your maven artifacts
into
 the Maven Central...

This seems to imply that I need an NBM which is a maven artifact.


Yes, it's simpler if your Router Plugin Project is built using Maven.

  From the IDE choose "File/New Project", then "Java with Maven" and
then
"NetBeans Module" (or "NetBeans Application" if you want a suite).

You'll be shown a dialog with some settings, then choose the
appropriate
NetBeans version dependencies (unfortunately you'll see RELEASE110
and
dev-snapshot, but not RELEASE112 in the combo box, but you can
change
that later).

The IDE will then download lots of dependencies from Maven Central.
This
is normal.

THen just copy the source code from your ant-based plugin and
compile.
Maybe you need to add some extra dependencies to your "pom.xml" file
for
things to compile properly.

For a working example you can see, for instance, the Alex Falappa's
nb-springboot plugin at https://github.com/AlexFalappa/nb-springboot

If you upload this project somewhere (gitlab/github/etc.) I can give
a hand.


2) Or is the process one in which I package an existing NBM (built
as an
ant project)  into a maven artifact. Like a process done by
creating
files with an editor, maybe using the jar command as well.

3) Or perhaps it's a hybrid process. Built the NBM as usual with
ant,
then build something else which packages the NBM and creates a
maven
artifact.

The docs all assume I know how to get an NBM which is a maven
artifact;
at least that's how I read them. Unfortunately I do not know how to
do
that.


Once you've done that you'll end up with a NetBeans project that you
can
build with maven (instead of ant). The Maven infrastructure will
take
care of everything (very much like ant did).

Once you're ready to upload to Maven Central (i.e., you have proper
version numbers, etc.) see
http://maven.apache.org/repository/guide-central-repository-upload.html
for instructions on how to digitally sign and upload to Maven
Central.

We should document all this whole process better so people is not
confused any longer. Your questions do help us understand how badly
we're confusing things (for the better, we hope), so thanks for
asking! ;-).

Kind regards,
Antonio




-ernie

On 11/8/2019 10:41 AM, Geertjan Wielenga wrote:

An NBM can be uploaded to Maven and also added to the Plugin
Portal, not
sure if that helps, just wanting to help but not sure what you’re
asking.

Gj

On Fri, 8 Nov 2019 at 18:58, Ernie Rael  wrote:


Given an existing .nbm, is there a way to package it for maven
central,
and then add it the the new plugin portal without building the
.nbm's
project with maven?

I'm still looking at the documentation to cut my plugin over to
maven...
In the meantime, I'm looking for a way to satisfy some user
needs in a
timely fashion.

-ernie


-

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





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

Re: Packaging an nbm for maven

2019-11-08 Thread Ernie Rael

Doh! Just asked for 11.0 verification. Thanks Matthias.

-ernie

On 11/8/2019 1:30 PM, Matthias Bläsing wrote:

Hi,

this information is not correct. The NetBeans 11.2 Update Center for
user provided plugins still is supplied by http://plugins.netbeans.org/
  . You can verify this by trying to download:

https://netbeans.apache.org/nb/plugins/11.2/catalog.xml.gz

This redirects to:

http://plugins.netbeans.org/nbpluginportal/updates/11.0/catalog.xml.gz

TL;DR: To get a plugin installable via Update Center into 11.2, get it
verified for 11.0 and you should be done (unchecked, as I'm currently
not able to login).

Greetings

Matthias

Am Freitag, den 08.11.2019, 22:10 +0100 schrieb antonio:

Hi Ernie,

Some answers inlined below.

El 8/11/19 a las 21:33, Ernie Rael escribió:

I have an existing NBM plugin, built as a NB module project using
ant. I
have never used maven. As the following request for clarification
shows,
I do not have an overview sense of what is required.

1) Do I need to convert the NB module project to build using maven?
The
first step in "How to get plugin on Plugin Portal Update Center" is
"1.
Upload your plugin to Maven Central". The docs for "How to upload
NetBeans Modules to Maven Central say

 ...the steps that are involved in getting your maven artifacts
into
 the Maven Central...

This seems to imply that I need an NBM which is a maven artifact.

Yes, it's simpler if your Router Plugin Project is built using Maven.

  From the IDE choose "File/New Project", then "Java with Maven" and
then
"NetBeans Module" (or "NetBeans Application" if you want a suite).

You'll be shown a dialog with some settings, then choose the
appropriate
NetBeans version dependencies (unfortunately you'll see RELEASE110
and
dev-snapshot, but not RELEASE112 in the combo box, but you can
change
that later).

The IDE will then download lots of dependencies from Maven Central.
This
is normal.

THen just copy the source code from your ant-based plugin and
compile.
Maybe you need to add some extra dependencies to your "pom.xml" file
for
things to compile properly.

For a working example you can see, for instance, the Alex Falappa's
nb-springboot plugin at https://github.com/AlexFalappa/nb-springboot

If you upload this project somewhere (gitlab/github/etc.) I can give
a hand.


2) Or is the process one in which I package an existing NBM (built
as an
ant project)  into a maven artifact. Like a process done by
creating
files with an editor, maybe using the jar command as well.

3) Or perhaps it's a hybrid process. Built the NBM as usual with
ant,
then build something else which packages the NBM and creates a
maven
artifact.

The docs all assume I know how to get an NBM which is a maven
artifact;
at least that's how I read them. Unfortunately I do not know how to
do
that.

Once you've done that you'll end up with a NetBeans project that you
can
build with maven (instead of ant). The Maven infrastructure will
take
care of everything (very much like ant did).

Once you're ready to upload to Maven Central (i.e., you have proper
version numbers, etc.) see
http://maven.apache.org/repository/guide-central-repository-upload.html
for instructions on how to digitally sign and upload to Maven
Central.

We should document all this whole process better so people is not
confused any longer. Your questions do help us understand how badly
we're confusing things (for the better, we hope), so thanks for
asking! ;-).

Kind regards,
Antonio




-ernie

On 11/8/2019 10:41 AM, Geertjan Wielenga wrote:

An NBM can be uploaded to Maven and also added to the Plugin
Portal, not
sure if that helps, just wanting to help but not sure what you’re
asking.

Gj

On Fri, 8 Nov 2019 at 18:58, Ernie Rael  wrote:


Given an existing .nbm, is there a way to package it for maven
central,
and then add it the the new plugin portal without building the
.nbm's
project with maven?

I'm still looking at the documentation to cut my plugin over to
maven...
In the meantime, I'm looking for a way to satisfy some user
needs in a
timely fashion.

-ernie


-

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




-
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:

Re: Packaging an nbm for maven

2019-11-08 Thread antonio

Agreed. Is there a JIRA for that?

We could also migrate https://platform.netbeans.org, with all the new 
tutorials, right? So people can learn how to build platform based apps.


Kind regards,
Antonio

El 8/11/19 a las 22:21, Matthias Bläsing escribió:

before we do that, we need to put the portal into production, that has
not happend yet.


-
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: Packaging an nbm for maven

2019-11-08 Thread Matthias Bläsing
Hi,

this information is not correct. The NetBeans 11.2 Update Center for
user provided plugins still is supplied by http://plugins.netbeans.org/
 . You can verify this by trying to download:

https://netbeans.apache.org/nb/plugins/11.2/catalog.xml.gz

This redirects to:

http://plugins.netbeans.org/nbpluginportal/updates/11.0/catalog.xml.gz

TL;DR: To get a plugin installable via Update Center into 11.2, get it
verified for 11.0 and you should be done (unchecked, as I'm currently
not able to login).

Greetings

Matthias

Am Freitag, den 08.11.2019, 22:10 +0100 schrieb antonio:
> Hi Ernie,
> 
> Some answers inlined below.
> 
> El 8/11/19 a las 21:33, Ernie Rael escribió:
> > I have an existing NBM plugin, built as a NB module project using
> > ant. I 
> > have never used maven. As the following request for clarification
> > shows, 
> > I do not have an overview sense of what is required.
> > 
> > 1) Do I need to convert the NB module project to build using maven?
> > The 
> > first step in "How to get plugin on Plugin Portal Update Center" is
> > "1. 
> > Upload your plugin to Maven Central". The docs for "How to upload 
> > NetBeans Modules to Maven Central say
> > 
> > ...the steps that are involved in getting your maven artifacts
> > into
> > the Maven Central...
> > 
> > This seems to imply that I need an NBM which is a maven artifact.
> 
> Yes, it's simpler if your Router Plugin Project is built using Maven.
> 
>  From the IDE choose "File/New Project", then "Java with Maven" and
> then 
> "NetBeans Module" (or "NetBeans Application" if you want a suite).
> 
> You'll be shown a dialog with some settings, then choose the
> appropriate 
> NetBeans version dependencies (unfortunately you'll see RELEASE110
> and 
> dev-snapshot, but not RELEASE112 in the combo box, but you can
> change 
> that later).
> 
> The IDE will then download lots of dependencies from Maven Central.
> This 
> is normal.
> 
> THen just copy the source code from your ant-based plugin and
> compile. 
> Maybe you need to add some extra dependencies to your "pom.xml" file
> for 
> things to compile properly.
> 
> For a working example you can see, for instance, the Alex Falappa's 
> nb-springboot plugin at https://github.com/AlexFalappa/nb-springboot
> 
> If you upload this project somewhere (gitlab/github/etc.) I can give
> a hand.
> 
> > 2) Or is the process one in which I package an existing NBM (built
> > as an 
> > ant project)  into a maven artifact. Like a process done by
> > creating 
> > files with an editor, maybe using the jar command as well.
> > 
> > 3) Or perhaps it's a hybrid process. Built the NBM as usual with
> > ant, 
> > then build something else which packages the NBM and creates a
> > maven 
> > artifact.
> > 
> > The docs all assume I know how to get an NBM which is a maven
> > artifact; 
> > at least that's how I read them. Unfortunately I do not know how to
> > do 
> > that.
> 
> Once you've done that you'll end up with a NetBeans project that you
> can 
> build with maven (instead of ant). The Maven infrastructure will
> take 
> care of everything (very much like ant did).
> 
> Once you're ready to upload to Maven Central (i.e., you have proper 
> version numbers, etc.) see 
> http://maven.apache.org/repository/guide-central-repository-upload.html 
> for instructions on how to digitally sign and upload to Maven
> Central.
> 
> We should document all this whole process better so people is not 
> confused any longer. Your questions do help us understand how badly 
> we're confusing things (for the better, we hope), so thanks for
> asking! ;-).
> 
> Kind regards,
> Antonio
> 
> 
> 
> > -ernie
> > 
> > On 11/8/2019 10:41 AM, Geertjan Wielenga wrote:
> > > An NBM can be uploaded to Maven and also added to the Plugin
> > > Portal, not
> > > sure if that helps, just wanting to help but not sure what you’re
> > > asking.
> > > 
> > > Gj
> > > 
> > > On Fri, 8 Nov 2019 at 18:58, Ernie Rael  wrote:
> > > 
> > > > Given an existing .nbm, is there a way to package it for maven
> > > > central,
> > > > and then add it the the new plugin portal without building the
> > > > .nbm's
> > > > project with maven?
> > > > 
> > > > I'm still looking at the documentation to cut my plugin over to
> > > > maven...
> > > > In the meantime, I'm looking for a way to satisfy some user
> > > > needs in a
> > > > timely fashion.
> > > > 
> > > > -ernie
> > > > 
> > > > 
> > > > -
> > > > 
> > > > 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

Re: Packaging an nbm for maven

2019-11-08 Thread Matthias Bläsing
Hi,

Am Freitag, den 08.11.2019, 22:10 +0100 schrieb antonio:
> We should document all this whole process better so people is not 
> confused any longer. Your questions do help us understand how badly 
> we're confusing things (for the better, we hope), so thanks for
> asking! ;-).

before we do that, we need to put the portal into production, that has
not happend yet.

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: Packaging an nbm for maven

2019-11-08 Thread antonio

Hi Ernie,

Some answers inlined below.

El 8/11/19 a las 21:33, Ernie Rael escribió:
I have an existing NBM plugin, built as a NB module project using ant. I 
have never used maven. As the following request for clarification shows, 
I do not have an overview sense of what is required.


1) Do I need to convert the NB module project to build using maven? The 
first step in "How to get plugin on Plugin Portal Update Center" is "1. 
Upload your plugin to Maven Central". The docs for "How to upload 
NetBeans Modules to Maven Central say


    ...the steps that are involved in getting your maven artifacts into
    the Maven Central...

This seems to imply that I need an NBM which is a maven artifact.


Yes, it's simpler if your Router Plugin Project is built using Maven.

From the IDE choose "File/New Project", then "Java with Maven" and then 
"NetBeans Module" (or "NetBeans Application" if you want a suite).


You'll be shown a dialog with some settings, then choose the appropriate 
NetBeans version dependencies (unfortunately you'll see RELEASE110 and 
dev-snapshot, but not RELEASE112 in the combo box, but you can change 
that later).


The IDE will then download lots of dependencies from Maven Central. This 
is normal.


THen just copy the source code from your ant-based plugin and compile. 
Maybe you need to add some extra dependencies to your "pom.xml" file for 
things to compile properly.


For a working example you can see, for instance, the Alex Falappa's 
nb-springboot plugin at https://github.com/AlexFalappa/nb-springboot


If you upload this project somewhere (gitlab/github/etc.) I can give a hand.



2) Or is the process one in which I package an existing NBM (built as an 
ant project)  into a maven artifact. Like a process done by creating 
files with an editor, maybe using the jar command as well.


3) Or perhaps it's a hybrid process. Built the NBM as usual with ant, 
then build something else which packages the NBM and creates a maven 
artifact.


The docs all assume I know how to get an NBM which is a maven artifact; 
at least that's how I read them. Unfortunately I do not know how to do 
that.


Once you've done that you'll end up with a NetBeans project that you can 
build with maven (instead of ant). The Maven infrastructure will take 
care of everything (very much like ant did).


Once you're ready to upload to Maven Central (i.e., you have proper 
version numbers, etc.) see 
http://maven.apache.org/repository/guide-central-repository-upload.html 
for instructions on how to digitally sign and upload to Maven Central.


We should document all this whole process better so people is not 
confused any longer. Your questions do help us understand how badly 
we're confusing things (for the better, we hope), so thanks for asking! ;-).


Kind regards,
Antonio





-ernie

On 11/8/2019 10:41 AM, Geertjan Wielenga wrote:

An NBM can be uploaded to Maven and also added to the Plugin Portal, not
sure if that helps, just wanting to help but not sure what you’re asking.

Gj

On Fri, 8 Nov 2019 at 18:58, Ernie Rael  wrote:


Given an existing .nbm, is there a way to package it for maven central,
and then add it the the new plugin portal without building the .nbm's
project with maven?

I'm still looking at the documentation to cut my plugin over to maven...
In the meantime, I'm looking for a way to satisfy some user needs in a
timely fashion.

-ernie


-
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





-
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: Packaging an nbm for maven

2019-11-08 Thread Ernie Rael

Hey,

Not that I'm there yet, but for testing. Can I use the 11.2 plugin 
manager to open a maven plugin I build as a download file?


-ernie

On 11/8/2019 12:49 PM, Ernie Rael wrote:

OK. Start with a new maven module project. Thanks.

-ernie

On 11/8/2019 12:27 PM, antonio wrote:

Hi,

I assume you just want to upload your "router plugin" to Maven 
Central. As far as I understand this "router plugin" will add a new 
"Update Center" (pointing to sourceforge, perhaps?) to the list of 
update centers in the IDE, after that users can download jVi binaries 
from this new update center.


I think you want to create a brand-new NetBeans-Maven-Plugin project 
with this "router plugin". You can do this directly from the IDE 
itself, as far as I remember (haven't tried myself yet). Remember to 
add Maven dependencies to the proper NetBeans specific bits ([1], for 
instance).


This brand-new NetBeans-Maven-Plugin would then be a Maven Project 
itself, and can be uploaded to Maven Central as any other Maven Project.


Once that is done you can then submit the plugin to the 
Apache-specific NetBeans portal.


Kind regards,
Antonio


[1]
https://search.maven.org/artifact/org.netbeans.cluster/platform/RELEASE112/pom 




El 8/11/19 a las 18:58, Ernie Rael escribió:
Given an existing .nbm, is there a way to package it for maven 
central, and then add it the the new plugin portal without building 
the .nbm's project with maven?


I'm still looking at the documentation to cut my plugin over to 
maven... In the meantime, I'm looking for a way to satisfy some user 
needs in a timely fashion.


-ernie


-
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








-
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: Packaging an nbm for maven

2019-11-08 Thread antonio

Hi,

I assume you just want to upload your "router plugin" to Maven Central. 
As far as I understand this "router plugin" will add a new "Update 
Center" (pointing to sourceforge, perhaps?) to the list of update 
centers in the IDE, after that users can download jVi binaries from this 
new update center.


I think you want to create a brand-new NetBeans-Maven-Plugin project 
with this "router plugin". You can do this directly from the IDE itself, 
as far as I remember (haven't tried myself yet). Remember to add Maven 
dependencies to the proper NetBeans specific bits ([1], for instance).


This brand-new NetBeans-Maven-Plugin would then be a Maven Project 
itself, and can be uploaded to Maven Central as any other Maven Project.


Once that is done you can then submit the plugin to the Apache-specific 
NetBeans portal.


Kind regards,
Antonio


[1]
https://search.maven.org/artifact/org.netbeans.cluster/platform/RELEASE112/pom


El 8/11/19 a las 18:58, Ernie Rael escribió:
Given an existing .nbm, is there a way to package it for maven central, 
and then add it the the new plugin portal without building the .nbm's 
project with maven?


I'm still looking at the documentation to cut my plugin over to maven... 
In the meantime, I'm looking for a way to satisfy some user needs in a 
timely fashion.


-ernie


-
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: Packaging an nbm for maven

2019-11-08 Thread Geertjan Wielenga
An NBM can be uploaded to Maven and also added to the Plugin Portal, not
sure if that helps, just wanting to help but not sure what you’re asking.

Gj

On Fri, 8 Nov 2019 at 18:58, Ernie Rael  wrote:

> Given an existing .nbm, is there a way to package it for maven central,
> and then add it the the new plugin portal without building the .nbm's
> project with maven?
>
> I'm still looking at the documentation to cut my plugin over to maven...
> In the meantime, I'm looking for a way to satisfy some user needs in a
> timely fashion.
>
> -ernie
>
>
> -
> 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
>
>
>
>


Packaging an nbm for maven

2019-11-08 Thread Ernie Rael
Given an existing .nbm, is there a way to package it for maven central, 
and then add it the the new plugin portal without building the .nbm's 
project with maven?


I'm still looking at the documentation to cut my plugin over to maven... 
In the meantime, I'm looking for a way to satisfy some user needs in a 
timely fashion.


-ernie


-
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