Skip to content

Instantly share code, notes, and snippets.

@belkacemlahouel
Last active January 22, 2018 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save belkacemlahouel/716f57e6e340ac581a7384e4607fd76e to your computer and use it in GitHub Desktop.
Save belkacemlahouel/716f57e6e340ac581a7384e4607fd76e to your computer and use it in GitHub Desktop.
contains a classic configuration for scala-maven-plugin with custom stack size
<build>
<plugins>
<plugin>
<!-- see http://davidb.github.com/scala-maven-plugin -->
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
<configuration>
<args>
<arg>-dependencyfile</arg>
<arg>${project.build.directory}/.scala_dependencies</arg>
</args>
<jvmArgs>
<jvmArg>-Xss4m</jvmArg>
</jvmArgs>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment