NetBeans update center request

2019-05-27 Thread dev

Hello,

I would like to make a request to publish my new plugin 
http://plugins.netbeans.org/plugin/75807/?show=true through the NetBeans UC.

I found this documentation 
https://netbeans.org/community/guidelines/au-management.html.

Is this form still the right one ? 
https://netbeans.org/community/guidelines/au-request-form.html
I've some doubt as the higher NetBeans version is 6.9.

And I encountered the following error.

Submission result
Validating data...
Data valid, sending the request...
Settig up parameters
Unable to Connect to tcp://netbeans.org:80. Error #145: Connection timed out
Request published at http://netbeans.org/bugzilla/show_bug.cgi?id=, Thank you!

May someone tell me the right process, please ?

Thanks

Eric



-
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-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: SQL editor "Keep Prior Tabs"

2019-05-27 Thread Glenn Holmer
On 5/27/19 11:59 AM, Mark Wilmoth wrote:
> https://netbeans.org/kb/docs/ide/oracle-db.html
> 
> 2. Keep Prior Tabs. Click the Keep Prior Tabs  icon on the SQL Editor toolbar 
> to keep the windows with the results of previous queries open. This can be 
> helpful if you want to compare the results of several queries.
> 
> It's not working though. :)

Yeah, someone mentioned that in IRC. I thought I just didn't know what
it was supposed to do.

> On Monday, May 27, 2019, 9:44:17 AM CDT, Glenn Holmer 
>  wrote: 
> 
> What is this feature meant to do? It's an icon in the toolbar, fifth
> from the left.

-- 
Glenn Holmer (Linux registered user #16682)
"After the vintage season came the aftermath -- and Cenbe."

-
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-27 Thread Eduardo Mosqueira Rey
Thank you Pieter.

I am also considering that the best option is to switch to Maven projects in 
the next course.
I have to prepare some brief introduction to Maven to the students, but if we 
maintain things simple I thing that there should be no problems.

De: Pieter van den Hombergh 
Enviado: lunes, 27 de mayo de 2019 20:01
Para: Eduardo Mosqueira Rey
Cc: users@netbeans.apache.org
Asunto: Re: JaCoCoverage plugin

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.


Re: JaCoCoverage plugin

2019-05-27 Thread Pieter van den Hombergh
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 <
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.


Re: SQL editor "Keep Prior Tabs"

2019-05-27 Thread Mark Wilmoth
https://netbeans.org/kb/docs/ide/oracle-db.html

2. Keep Prior Tabs. Click the Keep Prior Tabs  icon on the SQL Editor toolbar 
to keep the windows with the results of previous queries open. This can be 
helpful if you want to compare the results of several queries.

It's not working though. :)

Mark


On Monday, May 27, 2019, 9:44:17 AM CDT, Glenn Holmer 
 wrote: 





What is this feature meant to do? It's an icon in the toolbar, fifth
from the left.

-- 
Glenn Holmer (Linux registered user #16682)
"After the vintage season came the aftermath -- and Cenbe."

-
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



SQL editor "Keep Prior Tabs"

2019-05-27 Thread Glenn Holmer
What is this feature meant to do? It's an icon in the toolbar, fifth
from the left.

-- 
Glenn Holmer (Linux registered user #16682)
"After the vintage season came the aftermath -- and Cenbe."

-
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



[no subject]

2019-05-27 Thread Varuna Seneviratna



-
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 keep updating the maven index nonstop?

2019-05-27 Thread Varuna Seneviratna
Hello,
  Why does NetBeans keep updating the maven index nonstop? How
to stop that?. Usually, how long does take for updating the maven
index?

Thanks,
 Varuna

-
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