.classDebugging information files should be compiled at the level maven-scala-plugin. Doing this in maven-compiler-plugin- this, by the way, is the default, as we see in the documentation debug, which defaults to true - is useless since it does not compile your Scala sources.
Now, if we look at the scalac man page , the compiler scalachas a parameter –gthat can take the following values:
"none" ,
"source" ,
"line" ,
"vars" , ,
"notc" .
, scala:compile args , . , -g Scala, maven :
<plugin>
<groupId>org.scala-tools</groupId>
<artifactId>maven-scala-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
<configuration>
<args>
<arg>-g:notc</arg>
</args>
...
</configuration>
</plugin>
( repositories, pluginRepositories ..), , :)