Full name:
org.scala-tools:maven-scala-plugin:2.15.1:script
Description:
Attributes:
Name | Type | Since | Description |
---|---|---|---|
displayCmd | boolean | 2.7 | Display the command line called ? (property
'maven.scala.displayCmd' replaced by 'displayCmd') Default value is: false. |
scalaClassName | String | 2.7 | className (FQN) of the scala tool to provide as Default value is: scala.tools.nsc.Main. |
Name | Type | Since | Description |
---|---|---|---|
addToClasspath | String | 2.7 | Comma seperated list of directories or jars to add to the classpath |
args | String[] | 2.7 | compiler additionnals arguments |
checkMultipleScalaVersions | boolean | 2.7 | Check if every dependencies use the same version of scala-library. Default value is: true. |
compilerPlugins | BasicArtifact[] | 2.7 | Compiler plugin dependencies to use when compiling. ex: |
dependencies | BasicArtifact[] | 2.7 | Additional dependencies/jar to add to classpath to run
"scalaClassName" (scope and optional field not supported) ex :
<dependencies> <dependency> <groupId>org.scala-tools</groupId> <artifactId>scala-compiler-addon</artifactId> <version>1.0-SNAPSHOT</version> </dependency> </dependencies> |
excludeScopes | String | 2.7 | Comma separated list of scopes to remove from the classpath. Eg:
test,compile |
failOnMultipleScalaVersions | boolean | 2.7 | Determines if a detection of multiple scala versions in the
dependencies will cause the build to fail. Default value is: false. |
forceUseArgFile | boolean | 2.7 | Force the use of an external ArgFile to run any forked process. Default value is: false. |
fork | boolean | 2.7 | Forks the execution of scalac into a separate process. Default value is: true. |
includeScopes | String | 2.7 | 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' |
jvmArgs | String[] | 2.7 | Jvm Arguments. |
keepGeneratedScript | boolean | 2.7 | 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) Default value is: false. |
outputDir | File | 2.7 | The build directory of the project |
removeFromClasspath | String | 2.7 | 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 |
scalaVersion | String | 2.7 | Scala 's version to use. (property 'maven.scala.version' replaced
by 'scala.version') |
script | String | 2.7 | The script that will be executed. Either 'scriptFile' or '
script' must be defined. |
scriptFile | File | 2.7 | The file containing script to be executed. Either
'scriptFile' or 'script' must be defined. |
args:
<dependencies> <dependency> <groupId>org.scala-tools</groupId> <artifactId>scala-compiler-addon</artifactId> <version>1.0-SNAPSHOT</version> </dependency> </dependencies>
fork: