org_scala_tools_maven
Class ScalaSourceMojoSupport

java.lang.Object
  extended by org.apache.maven.plugin.AbstractMojo
      extended by org_scala_tools_maven.ScalaMojoSupport
          extended by org_scala_tools_maven.ScalaSourceMojoSupport
All Implemented Interfaces:
org.apache.maven.plugin.ContextEnabled, org.apache.maven.plugin.Mojo
Direct Known Subclasses:
ScalaCompilerSupport, ScalaDocMojo, ScalaGenJsonMojo

public abstract class ScalaSourceMojoSupport
extends ScalaMojoSupport

Author:
david.bernard

Field Summary
protected  Set<String> excludes
          A list of exclusion filters for the compiler.
protected  Set<String> includes
          A list of inclusion filters for the compiler.
protected  boolean sendJavaToScalac
          Enables/Disables sending java source to the scala compiler.
 
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
ScalaSourceMojoSupport()
           
 
Method Summary
protected  List<File> findSourceWithFilters()
          Finds all source files in a set of directories with a given extension.
protected  List<File> findSourceWithFilters(List<File> sourceRootDirs)
          Finds all source files in a set of directories with a given extension.
protected abstract  List<File> getSourceDirectories()
          Retreives the list of *all* root source directories.
protected  void initFilters()
           
protected  File normalize(File f)
           
protected  List<File> normalize(List<String> compileSourceRootsList)
          This limits the source directories to only those that exist for real.
 
Methods inherited from class org_scala_tools_maven.ScalaMojoSupport
addCompilerPluginOptions, addToClasspath, addToClasspath, addToClasspath, checkScalaVersion, doExecute, 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

sendJavaToScalac

protected boolean sendJavaToScalac
Enables/Disables sending java source to the scala compiler.


includes

protected Set<String> includes
A list of inclusion filters for the compiler. ex :
    <includes>
      <include>SomeFile.scala</include>
    </includes>
 


excludes

protected Set<String> excludes
A list of exclusion filters for the compiler. ex :
    <excludes>
      <exclude>SomeBadFile.scala</exclude>
    </excludes>
 

Constructor Detail

ScalaSourceMojoSupport

public ScalaSourceMojoSupport()
Method Detail

getSourceDirectories

protected abstract List<File> getSourceDirectories()
                                            throws Exception
Retreives the list of *all* root source directories. We need to pass all .java and .scala files into the scala compiler

Throws:
Exception

findSourceWithFilters

protected List<File> findSourceWithFilters()
                                    throws Exception
Finds all source files in a set of directories with a given extension.

Throws:
Exception

initFilters

protected void initFilters()
                    throws Exception
Throws:
Exception

findSourceWithFilters

protected List<File> findSourceWithFilters(List<File> sourceRootDirs)
                                    throws Exception
Finds all source files in a set of directories with a given extension.

Throws:
Exception

normalize

protected File normalize(File f)

normalize

protected List<File> normalize(List<String> compileSourceRootsList)
This limits the source directories to only those that exist for real.



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