Plugin Documentation

Goals available for this plugin:

Goal Report? Description
scala:add-source No Add more source directories to the POM.
scala:cc No Compile the main and test scala source directory in continuous (infinite loop). !! This is an util goal for commandline usage only (Do not use or call it in a pom) !!!
scala:cctest No Compile the main and test scala source directory then run unit test cases in continuous (infinite loop). This is an utility goal for command line usage only (Do not use or call it in a pom) !!!
scala:compile No Compiles a directory of Scala source. Corresponds roughly to the compile goal of the maven-compiler-plugin
scala:console No Run the Scala console with all the classes of the projects (dependencies and built)
scala:doc Yes Produces Scala API documentation.
scala:doc-jar Yes Creates a jar of the non-aggregated scaladoc and attaches it to the project for distribution.
scala:help No Display the Scala Compiler help
scala:run No Run a Scala class using the Scala runtime
scala:script No Run a scala script.
scala:testCompile No Compile Scala test source into test-classes. Corresponds roughly to testCompile in maven-compiler-plugin

System Requirements

The following specifies the minimum requirements to run this Maven plugin:

Maven 3.3.9
JDK 1.8

Usage

You should specify the version in your project's plugin configuration:

<project>
  ...
  <build>
    <!-- To define the plugin version in your parent POM -->
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>net.alchim31.maven</groupId>
          <artifactId>scala-maven-plugin</artifactId>
          <version>4.8.1</version>
        </plugin>
        ...
      </plugins>
    </pluginManagement>
    <!-- To use the plugin goals in your POM or parent POM -->
    <plugins>
      <plugin>
        <groupId>net.alchim31.maven</groupId>
        <artifactId>scala-maven-plugin</artifactId>
      </plugin>
      ...
    </plugins>
  </build>
  ...
  <!-- To use the report goals in your POM or parent POM -->
  <reporting>
    <plugins>
      <plugin>
        <groupId>net.alchim31.maven</groupId>
        <artifactId>scala-maven-plugin</artifactId>
        <version>4.8.1</version>
      </plugin>
      ...
    </plugins>
  </reporting>
  ...
</project>

For more information, see "Guide to Configuring Plug-ins"