使用maven-scala-plugin 2.15.2
,我试图将Scala类文件的最大长度指定为" 50"字符。我在pom.xml
中尝试了2个地方:
<build>
<plugins>
<plugin>
<groupId>org.scala-tools</groupId>
<artifactId>maven-scala-plugin</artifactId>
<version>2.15.2</version>
<executions>
<execution>
<id>scala-compile-first</id>
<goals>
<goal>compile</goal>
</goals>
<phase>process-resources</phase>
<configuration>
<scalacArgs> <-- Attempt #1 -->
<scalacArg>-Xmax-classfile-name 50</scalacArg>
</scalacArgs>
<scalaVersion>${scalaVer}</scalaVersion>
<args>
<arg>-make:transitive</arg>
<arg>-dependencyfile</arg>
<arg>${project.build.directory}/.scala_dependencies</arg>
<!-- Attempt #2 -->
</args>
</configuration>
我也跑了mvn compile -Xmax-classfile-name 50
,但是Maven没有认出这个选项而且失败了。
在哪里可以使用maven-scala-plugin
?
答案 0 :(得分:4)
在args
内使用configuration
的位置应该是放置编译器args的位置。您似乎也创建了scalacArgs
,但args
已传递给scalac。
我在我的插件中使用它将选项传递给编译器:
<configuration>
<args>
<arg>-g:vars</arg>
<arg>-Yrangepos</arg>
<arg>-P:scoverage:dataDir:${coverage.data.dir}</arg>
<arg>-Xmax-classfile-name</arg>
<arg>70</arg>
</args>
<jvmArgs>
<jvmArg>-Xms64m</jvmArg>
<jvmArg>-Xmx1024m</jvmArg>
</jvmArgs>
<compilerPlugins>
<compilerPlugin>
<groupId>org.scoverage</groupId>
<artifactId>scalac-scoverage-plugin_${scala.major}</artifactId>
<version>${scoverage-plugin.version}</version>
</compilerPlugin>
</compilerPlugins>
</configuration>
http://scala-tools.org/mvnsites/maven-scala-plugin/example_compile.html#Compiler_Arguments