Posts

Issues with scala-tools.org

    have a scala project using maven. When I was using only scala classes, there was no problem with the maven plugin. But now, I'm getting errors when trying to compile: [WARNING] C:\java\workspace\mcare\src\main\scala\com\fb\mcare\config\AppConfig.scala:2: error: object springframework is not a member of package org [WARNING] import org.springframework.context.annotation.Configuration  read more  scala training The Scala plugin extends the  Java plugin  to add support for  Scala  projects. It can deal with Scala code, mixed Scala and Java code, and even pure Java code (although we don’t necessarily recommend to use it for the latter). The plugin supports  joint compilation , which allows you to freely mix and match Scala and Java code, with dependencies in both directions. For example, a Scala class can extend a Java class that in turn extends a Scala class. This makes it possible to use the best language for the job, and to rewrite any class in the other language if needed. re