Error after installing scala plugin of netbeans
        Posted  
        
            by ghedas
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by ghedas
        
        
        
        Published on 2010-04-17T13:59:48Z
        Indexed on 
            2010/04/17
            14:03 UTC
        
        
        Read the original article
        Hit count: 433
        
I installed the scala plugin on my netbeans and followed the instruction of this page: http://wiki.netbeans.org/Scala68v1#Scala_Plugins_for_NetBeans_6.8_v1.x_.28RC2.29
but after it completed correctly step by step, when I make an empty project (Hello world!), the project has an error! The empty project is here:
package scalaapplication1
object Main {
  /**
   * @param args the command line arguments
   */
  def main(args: Array[String]): Unit = {
    println("Hello, world!")
  }
}
and the console error report is:
...\NetBeansProjects\ScalaApplication2\nbproject\build-impl.xml:403: The following error occurred while executing this line:
...\NetBeansProjects\ScalaApplication2\nbproject\build-impl.xml:236: scalac doesn't support the "fork" attribute
Is there any suggestion about it?!
© Stack Overflow or respective owner