org_scala_tools_maven_cs.ScalaCSCompileMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-scala-plugin Show documentation
Show all versions of maven-scala-plugin Show documentation
The maven-scala-plugin is used for compiling/testing/running/documenting scala code in maven.
package org_scala_tools_maven_cs;
/**
* Request compile to ScalaCS (no more, doesn't create project, check if exist, request compile of dependencies,...)
* @goal cs-compile
*/
public class ScalaCSCompileMojo extends ScalaCSMojoSupport {
@Override
protected CharSequence doRequest() throws Exception {
return scs.sendRequestCompile(projectNamePattern(), true, true);
}
}