org_scala_tools_maven
Class ScalaScriptMojo

java.lang.Object
  extended by org.apache.maven.plugin.AbstractMojo
      extended by org_scala_tools_maven.ScalaMojoSupport
          extended by org_scala_tools_maven.ScalaScriptMojo
All Implemented Interfaces:
org.apache.maven.plugin.ContextEnabled, org.apache.maven.plugin.Mojo

public class ScalaScriptMojo
extends ScalaMojoSupport

Run a scala script.

Since:
2.7

Field Summary
protected  String addToClasspath
          Comma seperated list of directories or jars to add to the classpath
protected  String excludeScopes
          Comma separated list of scopes to remove from the classpath.
protected  String includeScopes
          Comma separated list of scopes to add to the classpath.
protected  boolean keepGeneratedScript
          If set to true the Scala classfile that is generated will not be deleted after the goal completes.
protected  File outputDir
          The build directory of the project
protected  String removeFromClasspath
          Comma separated list of directories or jars to remove from the classpath.
protected  String script
          The script that will be executed.
protected  File scriptFile
          The file containing script to be executed.
protected  org.apache.maven.execution.MavenSession session
          The Maven Session Object
 
Fields inherited from class org_scala_tools_maven.ScalaMojoSupport
args, checkMultipleScalaVersions, compilerPlugins, dependencies, displayCmd, factory, failOnMultipleScalaVersions, forceUseArgFile, fork, jvmArgs, localRepo, mavenProjectBuilder, project, remoteRepos, resolver, SCALA_GROUPID, SCALA_LIBRARY_ARTIFACTID, scalaClassName
 
Fields inherited from interface org.apache.maven.plugin.Mojo
ROLE
 
Constructor Summary
ScalaScriptMojo()
           
 
Method Summary
protected  void doExecute()
           
 
Methods inherited from class org_scala_tools_maven.ScalaMojoSupport
addCompilerPluginOptions, addToClasspath, addToClasspath, addToClasspath, checkScalaVersion, execute, findScalaVersion, getDependencies, getEmptyScalaCommand, getScalaCommand, isJavaSupportedByCompiler, resolveArtifactDependencies, resolveDependencyArtifacts
 
Methods inherited from class org.apache.maven.plugin.AbstractMojo
getLog, getPluginContext, setLog, setPluginContext
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

outputDir

protected File outputDir
The build directory of the project


scriptFile

protected File scriptFile
The file containing script to be executed. Either 'scriptFile' or 'script' must be defined.


script

protected String script
The script that will be executed. Either 'scriptFile' or ' script' must be defined.


keepGeneratedScript

protected boolean keepGeneratedScript
If set to true the Scala classfile that is generated will not be deleted after the goal completes. This is to allows easier debugging of the script especially since line numbers will be wrong because lines are added to the compiled script (see script examples)


includeScopes

protected String includeScopes
Comma separated list of scopes to add to the classpath. The possible scopes are : test,compile, system, runtime, plugin. By default embedded script into pom.xml run with 'plugin' scope and script read from scriptFile run with 'compile, test, runtime'


excludeScopes

protected String excludeScopes
Comma separated list of scopes to remove from the classpath. Eg: test,compile


addToClasspath

protected String addToClasspath
Comma seperated list of directories or jars to add to the classpath


removeFromClasspath

protected String removeFromClasspath
Comma separated list of directories or jars to remove from the classpath. This is useful for resolving conflicts in the classpath. For example, the script uses Ant 1.7 and the compiler dependencies pull in Ant 1.5 optional which conflicts and causes a crash


session

protected org.apache.maven.execution.MavenSession session
The Maven Session Object

Constructor Detail

ScalaScriptMojo

public ScalaScriptMojo()
Method Detail

doExecute

protected void doExecute()
                  throws Exception
Specified by:
doExecute in class ScalaMojoSupport
Throws:
Exception


Copyright © 2010-2011 Scala Tools. All Rights Reserved.