Skip to content

Instantly share code, notes, and snippets.

@lgazo
Created February 18, 2015 13:10
Show Gist options
  • Save lgazo/a7f24ad20ad50a60092d to your computer and use it in GitHub Desktop.
Save lgazo/a7f24ad20ad50a60092d to your computer and use it in GitHub Desktop.
pom - scalatest running
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>3.1.7-SNAPSHOT</version>
<!-- <configuration> -->
<!-- <recompileMode>incremental</recompileMode> -->
<!-- </configuration> -->
<executions>
<!-- <execution> -->
<!-- <id>scala-compile-first</id> -->
<!-- <phase>process-resources</phase> -->
<!-- <goals> -->
<!-- <goal>add-source</goal> -->
<!-- <goal>compile</goal> -->
<!-- </goals> -->
<!-- </execution> -->
<execution>
<id>scala-test-compile</id>
<phase>process-test-resources</phase>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment