Skip to content

Instantly share code, notes, and snippets.

@RebieKong
Last active January 10, 2019 17:31
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 RebieKong/bbe8a3f4cfd9ef1bec3de68ac4205339 to your computer and use it in GitHub Desktop.
Save RebieKong/bbe8a3f4cfd9ef1bec3de68ac4205339 to your computer and use it in GitHub Desktop.
在maven中构建scala
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>3.4.4</version>
<executions>
<execution>
<id>scala-compile-first</id>
<phase>process-resources</phase>
<goals>
<goal>add-source</goal>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment