Created
October 18, 2012 00:09
-
-
Save mpilquist/3909128 to your computer and use it in GitHub Desktop.
Scala Maven Plugin settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugin> | |
<groupId>net.alchim31.maven</groupId> | |
<artifactId>scala-maven-plugin</artifactId> | |
<version>${scala.plugin.version}</version> | |
<configuration> | |
<recompileMode>incremental</recompileMode> | |
<useZincServer>true</useZincServer> | |
<args> | |
<arg>-target:jvm-1.5</arg> | |
<arg>-deprecation</arg> | |
<arg>-unchecked</arg> | |
<arg>-optimise</arg> | |
<arg>-explaintypes</arg> | |
<arg>-encoding</arg> | |
<arg>UTF-8</arg> | |
<arg>-Yclosure-elim</arg> | |
<arg>-Yinline</arg> | |
</args> | |
<javacArgs> | |
<javacArg>-source</javacArg> | |
<javacArg>1.6</javacArg> | |
<javacArg>-Xlint:-options</javacArg> | |
<javacArg>-target</javacArg> | |
<javacArg>1.6</javacArg> | |
</javacArgs> | |
<jvmArgs> | |
<jvmArg>-Xmx768m</jvmArg> | |
<jvmArg>-Xss10m</jvmArg> | |
</jvmArgs> | |
<scalaVersion>${scala.version}</scalaVersion> | |
<ccTestGoals>scalatest:test</ccTestGoals> | |
</configuration> | |
</plugin> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment