- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
NetBeans Plug for 2.8 BETA1?
Thu, 2010-01-28, 23:58
hey (caoyuan)....
any chance that there's going to be an updated netbeans plug-in binary =
for 2.8 BETA1?
will the missing incremental build be solved? at the moment, i have to =
hit "Clean and Build Main Project" always, if i try to use "Build Main =
Project", the compiler gets hickups from classes it doesn't see. this =
makes it a little painful as my project grows and compilation times are =
extensive....
thanks + keep up the good work,
-sciss-
Fri, 2010-01-29, 12:47
#2
Re: NetBeans Plug for 2.8 BETA1?
hi caoyuan,
i've got my libraries as jars and they don't need to be touched. but right now i have around 100 files of the actual project, and when i change a single character in one of them, i press "build", the compiler fails with more or less random errors about missing symbols, so i need to recompile all 100 files all the time.....
i just checked out the latest IDEA, and it works very smoothly there, it really just compiles a few files and hence is a magnitude faster.... i guess both use the standard scalac in the background, so i wonder if this problem cannot be fixed in netbeans.
thanks , -sciss-
Am 29.01.2010 um 07:24 schrieb Caoyuan:
> Hi Sciss,
>
> The netbeans plugin:
> https://sourceforge.net/projects/erlybird/files/nb-scala/6.8v1.1.0rc1/
> works with none problem with Scala-2.8.0 Beta1.
>
> I've also upgraded the plugin source code to Scala-2.8.0 Beta1, but
> not release it yet, there is a new affect which may cause parsing
> fails (although rarely happens), I need a bit time to resolve it. And
> I have also to resolve some issues that were found during past 2
> months, most of them were related to Windows environment.
>
> The one word is: use current plugin for 2.8.0 Beta1, it's good enough.
>
> For the incremental building, if your project is split to several
> sub-projects, the best practice so far is managing them via Maven
> instead of Ant, please take a look at:
>
> http://blogtrader.net/blog/how_to_setup_dependencies_aware2
>
> In most cases, invoking "Build with Dependencies" works enough for the
> dependency graph, and knows the dependencies between source files.
>
> My current working project has 12 sub-projects, with cross
> dependencies, maven handles them very nice, the building time is cut a
> lot comparing to eld Ant based one.
>
> Cheers,
> -Caoyuan
>
> On Fri, Jan 29, 2010 at 6:57 AM, Sciss wrote:
>> hey (caoyuan)....
>>
>> any chance that there's going to be an updated netbeans plug-in binary =
>> for 2.8 BETA1?
>>
>> will the missing incremental build be solved? at the moment, i have to =
>> hit "Clean and Build Main Project" always, if i try to use "Build Main =
>> Project", the compiler gets hickups from classes it doesn't see. this =
>> makes it a little painful as my project grows and compilation times are =
>> extensive....
>>
>> thanks + keep up the good work,
>>
>> -sciss-
>>
Fri, 2010-01-29, 15:27
#3
Re: NetBeans Plug for 2.8 BETA1?
I don't know if this is related, but I need to open all source files for the syntax checker to work. It will stop and error highlight all references to classes that havn't been opened in the editor yet. Also, sometimes when I edit and introduce an error, the syntax checker will return to this previous error state and I will need to open all source files again for it to continue.
I've also separated out each class in it's own file, as you mentioned in another thread.
On Fri, Jan 29, 2010 at 8:24 AM, Caoyuan <dcaoyuan@gmail.com> wrote:
I've also separated out each class in it's own file, as you mentioned in another thread.
On Fri, Jan 29, 2010 at 8:24 AM, Caoyuan <dcaoyuan@gmail.com> wrote:
Hi Sciss,
The netbeans plugin:
https://sourceforge.net/projects/erlybird/files/nb-scala/6.8v1.1.0rc1/
works with none problem with Scala-2.8.0 Beta1.
I've also upgraded the plugin source code to Scala-2.8.0 Beta1, but
not release it yet, there is a new affect which may cause parsing
fails (although rarely happens), I need a bit time to resolve it. And
I have also to resolve some issues that were found during past 2
months, most of them were related to Windows environment.
The one word is: use current plugin for 2.8.0 Beta1, it's good enough.
For the incremental building, if your project is split to several
sub-projects, the best practice so far is managing them via Maven
instead of Ant, please take a look at:
http://blogtrader.net/blog/how_to_setup_dependencies_aware2
In most cases, invoking "Build with Dependencies" works enough for the
dependency graph, and knows the dependencies between source files.
My current working project has 12 sub-projects, with cross
dependencies, maven handles them very nice, the building time is cut a
lot comparing to eld Ant based one.
Cheers,
-Caoyuan
On Fri, Jan 29, 2010 at 6:57 AM, Sciss <contact@sciss.de> wrote:
> hey (caoyuan)....
>
> any chance that there's going to be an updated netbeans plug-in binary =
> for 2.8 BETA1?
>
> will the missing incremental build be solved? at the moment, i have to =
> hit "Clean and Build Main Project" always, if i try to use "Build Main =
> Project", the compiler gets hickups from classes it doesn't see. this =
> makes it a little painful as my project grows and compilation times are =
> extensive....
>
> thanks + keep up the good work,
>
> -sciss-
>
Fri, 2010-01-29, 15:37
#4
Re: NetBeans Plug for 2.8 BETA1?
hi trond,
interesting. does this solve the problem with the incremental compile?
i have no problem popping up all my documents. (and yes, i have the problem with the syntax checker not seeing stuff unless their corresponding doc is open). but i will have huge problem have each class in a file :-/
thanks, -sciss-
Am 29.01.2010 um 14:24 schrieb Trond Olsen:
> I don't know if this is related, but I need to open all source files for the syntax checker to work. It will stop and error highlight all references to classes that havn't been opened in the editor yet. Also, sometimes when I edit and introduce an error, the syntax checker will return to this previous error state and I will need to open all source files again for it to continue.
>
> I've also separated out each class in it's own file, as you mentioned in another thread.
>
> On Fri, Jan 29, 2010 at 8:24 AM, Caoyuan wrote:
> Hi Sciss,
>
> The netbeans plugin:
> https://sourceforge.net/projects/erlybird/files/nb-scala/6.8v1.1.0rc1/
> works with none problem with Scala-2.8.0 Beta1.
>
> I've also upgraded the plugin source code to Scala-2.8.0 Beta1, but
> not release it yet, there is a new affect which may cause parsing
> fails (although rarely happens), I need a bit time to resolve it. And
> I have also to resolve some issues that were found during past 2
> months, most of them were related to Windows environment.
>
> The one word is: use current plugin for 2.8.0 Beta1, it's good enough.
>
> For the incremental building, if your project is split to several
> sub-projects, the best practice so far is managing them via Maven
> instead of Ant, please take a look at:
>
> http://blogtrader.net/blog/how_to_setup_dependencies_aware2
>
> In most cases, invoking "Build with Dependencies" works enough for the
> dependency graph, and knows the dependencies between source files.
>
> My current working project has 12 sub-projects, with cross
> dependencies, maven handles them very nice, the building time is cut a
> lot comparing to eld Ant based one.
>
> Cheers,
> -Caoyuan
>
> On Fri, Jan 29, 2010 at 6:57 AM, Sciss wrote:
>> hey (caoyuan)....
>>
>> any chance that there's going to be an updated netbeans plug-in binary =
>> for 2.8 BETA1?
>>
>> will the missing incremental build be solved? at the moment, i have to =
>> hit "Clean and Build Main Project" always, if i try to use "Build Main =
>> Project", the compiler gets hickups from classes it doesn't see. this =
>> makes it a little painful as my project grows and compilation times are =
>> extensive....
>>
>> thanks + keep up the good work,
>>
>> -sciss-
>>
>
Fri, 2010-01-29, 16:37
#5
Re: NetBeans Plug for 2.8 BETA1?
I just write the ant buildscript myself and run it manually, so I do complete re-compilation each time.
Also, when I said I needed to open each sourcefile manually, I actually meant "visiting" each sourcefile, since it also applies to opened ones.
On Fri, Jan 29, 2010 at 3:29 PM, Sciss <contact@sciss.de> wrote:
Also, when I said I needed to open each sourcefile manually, I actually meant "visiting" each sourcefile, since it also applies to opened ones.
On Fri, Jan 29, 2010 at 3:29 PM, Sciss <contact@sciss.de> wrote:
hi trond,
interesting. does this solve the problem with the incremental compile?
i have no problem popping up all my documents. (and yes, i have the problem with the syntax checker not seeing stuff unless their corresponding doc is open). but i will have huge problem have each class in a file :-/
thanks, -sciss-
Am 29.01.2010 um 14:24 schrieb Trond Olsen:
> I don't know if this is related, but I need to open all source files for the syntax checker to work. It will stop and error highlight all references to classes that havn't been opened in the editor yet. Also, sometimes when I edit and introduce an error, the syntax checker will return to this previous error state and I will need to open all source files again for it to continue.
>
> I've also separated out each class in it's own file, as you mentioned in another thread.
>
> On Fri, Jan 29, 2010 at 8:24 AM, Caoyuan <dcaoyuan@gmail.com> wrote:
> Hi Sciss,
>
> The netbeans plugin:
> https://sourceforge.net/projects/erlybird/files/nb-scala/6.8v1.1.0rc1/
> works with none problem with Scala-2.8.0 Beta1.
>
> I've also upgraded the plugin source code to Scala-2.8.0 Beta1, but
> not release it yet, there is a new affect which may cause parsing
> fails (although rarely happens), I need a bit time to resolve it. And
> I have also to resolve some issues that were found during past 2
> months, most of them were related to Windows environment.
>
> The one word is: use current plugin for 2.8.0 Beta1, it's good enough.
>
> For the incremental building, if your project is split to several
> sub-projects, the best practice so far is managing them via Maven
> instead of Ant, please take a look at:
>
> http://blogtrader.net/blog/how_to_setup_dependencies_aware2
>
> In most cases, invoking "Build with Dependencies" works enough for the
> dependency graph, and knows the dependencies between source files.
>
> My current working project has 12 sub-projects, with cross
> dependencies, maven handles them very nice, the building time is cut a
> lot comparing to eld Ant based one.
>
> Cheers,
> -Caoyuan
>
> On Fri, Jan 29, 2010 at 6:57 AM, Sciss <contact@sciss.de> wrote:
>> hey (caoyuan)....
>>
>> any chance that there's going to be an updated netbeans plug-in binary =
>> for 2.8 BETA1?
>>
>> will the missing incremental build be solved? at the moment, i have to =
>> hit "Clean and Build Main Project" always, if i try to use "Build Main =
>> Project", the compiler gets hickups from classes it doesn't see. this =
>> makes it a little painful as my project grows and compilation times are =
>> extensive....
>>
>> thanks + keep up the good work,
>>
>> -sciss-
>>
>
Hi Sciss,
The netbeans plugin:
https://sourceforge.net/projects/erlybird/files/nb-scala/6.8v1.1.0rc1/
works with none problem with Scala-2.8.0 Beta1.
I've also upgraded the plugin source code to Scala-2.8.0 Beta1, but
not release it yet, there is a new affect which may cause parsing
fails (although rarely happens), I need a bit time to resolve it. And
I have also to resolve some issues that were found during past 2
months, most of them were related to Windows environment.
The one word is: use current plugin for 2.8.0 Beta1, it's good enough.
For the incremental building, if your project is split to several
sub-projects, the best practice so far is managing them via Maven
instead of Ant, please take a look at:
http://blogtrader.net/blog/how_to_setup_dependencies_aware2
In most cases, invoking "Build with Dependencies" works enough for the
dependency graph, and knows the dependencies between source files.
My current working project has 12 sub-projects, with cross
dependencies, maven handles them very nice, the building time is cut a
lot comparing to eld Ant based one.
Cheers,
-Caoyuan
On Fri, Jan 29, 2010 at 6:57 AM, Sciss wrote:
> hey (caoyuan)....
>
> any chance that there's going to be an updated netbeans plug-in binary =
> for 2.8 BETA1?
>
> will the missing incremental build be solved? at the moment, i have to =
> hit "Clean and Build Main Project" always, if i try to use "Build Main =
> Project", the compiler gets hickups from classes it doesn't see. this =
> makes it a little painful as my project grows and compilation times are =
> extensive....
>
> thanks + keep up the good work,
>
> -sciss-
>