Re: New location of nbms-and-javadoc/lastSuccessfulBuild/artifact?

2021-06-01 Thread Bilu Al
I am looking for org.netbeans.modules.jira.connector and the old 8.2 Python
Plugin i used to find in the old Plugin Portal: http://plugins.netbeans.org/


Le mar. 1 juin 2021 à 16:12, Geertjan Wielenga <
geertjan.wiele...@googlemail.com> a écrit :

> What plugin are you looking for?
>
> Gj
>
> On Tue, 1 Jun 2021 at 16:09, Bilu Al  wrote:
>
>> Any idea of the new link?
>>
>> Le mar. 1 juin 2021 à 00:23, Bilu  a écrit :
>>
>>> Hello this server seems down:
>>> http://137.254.56.27/dev/nbms-and-javadoc/lastSuccessfulBuild/artifact/nbbuild/nbms/updates.xml.gz
>>>
>>> Can somebody walk me to the new location of theses nbms please?
>>>
>>


Re: New location of nbms-and-javadoc/lastSuccessfulBuild/artifact?

2021-06-01 Thread Geertjan Wielenga
What plugin are you looking for?

Gj

On Tue, 1 Jun 2021 at 16:09, Bilu Al  wrote:

> Any idea of the new link?
>
> Le mar. 1 juin 2021 à 00:23, Bilu  a écrit :
>
>> Hello this server seems down:
>> http://137.254.56.27/dev/nbms-and-javadoc/lastSuccessfulBuild/artifact/nbbuild/nbms/updates.xml.gz
>>
>> Can somebody walk me to the new location of theses nbms please?
>>
>


Re: [ANNOUNCE] Apache NetBeans 12.4 released

2021-06-01 Thread Bilu Al
+1
Just installed 12.4 working like a charm. The updates on FlatLaf looks just
fantastic on Windows 10:)
Congrats

Le lun. 31 mai 2021 à 14:57, Paulo Toledo 
a écrit :

> +1
>
> Paulo
>
> Em 30/05/2021 18:51, Malcolm Fitzgerald escreveu:
> > Congratulations to all the people who have worked to make this
> > release. I want to let you know how much I appreciate the work that
> > you are doing.
> >
> > thanks for producing great software,
> >
> > Malcolm
> >
>
> -
> 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: New location of nbms-and-javadoc/lastSuccessfulBuild/artifact?

2021-06-01 Thread Bilu Al
Any idea of the new link?

Le mar. 1 juin 2021 à 00:23, Bilu  a écrit :

> Hello this server seems down:
> http://137.254.56.27/dev/nbms-and-javadoc/lastSuccessfulBuild/artifact/nbbuild/nbms/updates.xml.gz
>
> Can somebody walk me to the new location of theses nbms please?
>


Re: Problem with gradle 7 (try with netbeans 12.2 and 12.4)

2021-06-01 Thread Scott Palmer
Replace the (deprecated) ‘compile’ with ‘implementation’


> On Jun 1, 2021, at 4:40 AM, mez...@yahoo.com.invalid 
>  wrote:
> 
> Hi to All,
> I went from Gradle 6.5 to 6.8 to 6.9  with no problems with a very small 
> project.
> 
> With Gradle 7 (all 7s) Netbeans 12.2 and 12.4, openjdk 15.0.2, the same 
> project gives me this problem:
> 
> 
> 
> With Gradle 7, the syntax to add a local .jar file is the same ?
> 
> The project foresees a local .jar. With Gradle 6.x it was possible to set in 
> the classpath in the following way:
> Gradle params:
> apply plugin: 'java'
> apply plugin: 'jacoco'
> apply plugin: 'application'
> 
> repositories {
> mavenCentral ()
> }
> 
> dependencies {
>  testImplementation 'junit: junit: 4.13'
>  compile files('../tco_lib/dist/tco_lib.jar')
> }
> End Gradle params.
> 
> Thanks in advance if anyone can give me a tip,
> Valerio



Re: Excel Sheet: Sheet problem

2021-06-01 Thread Carl Mosca
Perhaps you could make your code along with an example worksheet available
in a publicly accessible (git) repo.

It would be easier for someone to reproduce and debug the issue...assuming
the answer that has already been provided is not applicable or unclear.
Otherwise, folks will have to help an issue or two at a time which will not
be very efficient and a bit frustrating.

If the screen capture is still current, it appears that you're missing the
import for the Sheet class.  From the Source menu, you can use "Fix
imports" to add the needed import statement(s).

It's hard to tell if/where "workbook" is declared but it appears to be
undefined or out of scope.




On Mon, May 31, 2021 at 6:56 PM Zulfi Khan 
wrote:

>
> Hi,
> I have sent my question to apache poi list but no body is replying. Please
> tell me the correct email address.
>
> Zulfi.
> On Sunday, May 16, 2021, 7:11:38 PM CDT, Andreas Reichel <
> andr...@manticore-projects.com> wrote:
>
>
> Hello Zulfi.
>
> On Mon, 2021-05-17 at 00:06 +, Zulfi Khan wrote:
>
> Sheet sheet = workbook.getSheetAt();
>
>
> The Sheet Index is missing when calling getSheetAt( ** );
> Also this is the Netbeans list and you will better ask any question on the
> Apache POI list.
>
> Best regards
> Andreas
>
>

-- 
Carl J. Mosca
-- 
Regards,
Carl


Problem with gradle 7 (try with netbeans 12.2 and 12.4)

2021-06-01 Thread mez...@yahoo.com.INVALID

Hi to All,
I went from Gradle 6.5 to 6.8 to 6.9  with no problems with a very small 
project.


With Gradle 7 (all 7s) Netbeans 12.2 and 12.4, openjdk 15.0.2, the same 
project gives me this problem:




With Gradle 7, the syntax to add a local .jar file is the same ?

The project foresees a local .jar. With Gradle 6.x it was possible to 
set in the classpath in the following way:

Gradle params:
apply plugin: 'java'
apply plugin: 'jacoco'
apply plugin: 'application'

repositories {
    mavenCentral ()
}

dependencies {
 testImplementation 'junit: junit: 4.13'*
compile files('../tco_lib/dist/tco_lib.jar')*
}
End Gradle params.

Thanks in advance if anyone can give me a tip,
Valerio


Re: Excel Sheet: Sheet problem

2021-06-01 Thread Juan Algaba
You are missing the import statement for "Sheet"
If you click the light bulb with the red exclamation mark on the left
netbeans can fix it for you.

--
- Juan Algaba

-
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