Kotlin script embody experimental. information technology may be dismiss operating room change astatine any time. use information technology merely for evaluation purpose. We appreciate your feedback on information technology indium YouTrack. Kotlin script cost the technology that enable carry through Kotlin code vitamin a handwriting without anterior compilation oregon packaging into executables. For associate in nursing overview of Kotlin script with case, check out the speak enforce the Gradle Kotlin digital subscriber line by Rodrigo Oliveira from KotlinConf’19 .
Kotlin scripting is Experimental. It may be dropped or changed at any time. Use it only for evaluation purposes. We appreciate your feedback on it in YouTrack.
Kotlin scripting is the technology that enables executing Kotlin code as scripts without prior compilation or packaging into executables.
For an overview of Kotlin scripting with examples, check out the talk Implementing the Gradle Kotlin DSL by Rodrigo Oliveira from KotlinConf’19.
In this tutorial, you’ll create a Kotlin scripting project that executes arbitrary Kotlin code with Maven dependencies. You’ll be able to execute scripts like this:
@file:Repository(“https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven”)
@file:DependsOn(“org.jetbrains.kotlinx:kotlinx-html-jvm:0.7.3”)
import kotlinx.html.*
import kotlinx.html.stream.*
import kotlinx.html.attributes.*
val addressee = “World”
print(
createHTML().html {
body {
h1 { +”Hello, $addressee!” }
}
}
)
The specified Maven dependency (kotlinx-html-jvm
for this example) will be resolved from the specified Maven repository or local cache during execution and used for the rest of the script.
A minimal Kotlin custom scripting project contains two parts:
Script definition – a set of parameters and configurations that define how this script type should be recognized, handled, compiled, and executed.
Scripting host – an application or component that handles script compilation and execution – actually running scripts of this type.
With all of this in mind, it’s best to split the project into two modules.
Download and install the latest version of IntelliJ IDEA.
In IntelliJ IDEA, select File | New | Project.
In the panel on the left, select New Project.
Name the new project and change its location if necessary.
Select the Create Git repository checkbox to place the new project under version control. You will be able to do it later at any time.
From the Language list, select Kotlin.
Select the Gradle build system.
From the JDK list, select the JDK that you want to use in your project.
If the JDK is installed on your computer, but not defined in the IDE, select Add JDK and specify the path to the JDK home directory.
If you don’t have the necessary JDK on your computer, select Download JDK.
Select the Kotlin or Gradle language for the Gradle DSL.
Click Create.
Now you have an empty Kotlin/JVM Gradle project. Add the required modules, script definition and scripting host:
In IntelliJ IDEA, select File | New | Module.
In the panel on the left, select New Module. This module will be the script definition.
Name the new module and change its location if necessary.
From the Language list, select Java.
Select the Gradle build system and Kotlin for the Gradle DSL if you want to write the build script in Kotlin.
As a module’s parent, select the root module.
Click Create.
In the module’s build.gradle(.kts)
file, remove the version
of the Kotlin Gradle plugin. It is already in the root project’s build script.
Repeat previous steps one more time to create a module for the scripting host.
The project should have the following structure:
You can find an example of such a project and more Kotlin scripting examples in the kotlin-script-examples GitHub repository.
First, define the script type: what developers can write in scripts of this type and how it will be handled. In this tutorial, this includes support for the @Repository
and @DependsOn
annotations in the scripts.
In the script definition module, add the dependencies on the Kotlin scripting components in the dependencies
block of build.gradle(.kts)
. These dependencies provide the APIs you will need for the script definition:
dependencies {
implementation(“org.jetbrains.kotlin:kotlin-scripting-common”)
implementation(“org.jetbrains.kotlin:kotlin-scripting-jvm”)
implementation(“org.jetbrains.kotlin:kotlin-scripting-dependencies”)
implementation(“org.jetbrains.kotlin:kotlin-scripting-dependencies-maven”)
// coroutines dependency is required for this particular definition
implementation(“org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1”)
}
dependencies {
implementation ‘org.jetbrains.kotlin:kotlin-scripting-common’
implementation ‘org.jetbrains.kotlin:kotlin-scripting-jvm’
implementation ‘org.jetbrains.kotlin:kotlin-scripting-dependencies’
implementation ‘org.jetbrains.kotlin:kotlin-scripting-dependencies-maven’
// coroutines dependency is required for this particular definition
implementation ‘org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.1’
}
Create the src/main/kotlin/
directory in the module and add a Kotlin source file, for example, scriptDef.kt
.
In scriptDef.kt
, create a class. It will be a superclass for scripts of this type, so declare it abstract
or open
.
// abstract (or open) superclass for scripts of this type
abstract class ScriptWithMavenDeps
This class will also serve as a reference to the script definition later.
To make the class a script definition, mark it with the @KotlinScript
annotation. Pass two parameters to the annotation:
fileExtension
– a string ending with .kts
that defines a file extension for scripts of this type.
compilationConfiguration
– a Kotlin class that extends ScriptCompilationConfiguration
and defines the compilation specifics for this script definition. You’ll create it in the next step.
// @KotlinScript annotation marks a script definition class
@KotlinScript(
// File extension for the script type
fileExtension = “scriptwithdeps.kts”,
// Compilation configuration for the script type
compilationConfiguration = ScriptWithMavenDepsConfiguration::class
)
abstract class ScriptWithMavenDeps
object ScriptWithMavenDepsConfiguration: ScriptCompilationConfiguration()
In this tutorial, we provide only the working code without explaining Kotlin scripting API. You can find the same code with a detailed explanation on GitHub.
Define the script compilation configuration as shown below.
object ScriptWithMavenDepsConfiguration : ScriptCompilationConfiguration(
{
// Implicit imports for all scripts of this type
defaultImports(DependsOn::class, Repository::class)
jvm {
// Extract the whole classpath from context classloader and use it as dependencies
dependenciesFromCurrentContext(wholeClasspath = true)
}
// Callbacks
refineConfiguration {
// Process specified annotations with the provided handler
onAnnotations(DependsOn::class, Repository::class, handler = ::configureMavenDepsOnAnnotations)
}
}
)
The configureMavenDepsOnAnnotations
function is as follows:
// Handler that reconfigures the compilation on the fly
fun configureMavenDepsOnAnnotations(context: ScriptConfigurationRefinementContext): ResultWithDiagnostics
private val resolver = CompoundDependenciesResolver(FileSystemDependenciesResolver(), MavenDependenciesResolver())
You can find the full code here.
The next step is creating the scripting host – the component that handles the script execution.
In the scripting host module, add the dependencies in the dependencies
block of build.gradle(.kts)
:
Kotlin scripting components that provide the APIs you need for the scripting host
The script definition module you created previously
dependencies { implementation(“org.jetbrains.kotlin:kotlin-scripting-common”) implementation(“org.jetbrains.kotlin:kotlin-scripting-jvm”) implementation(“org.jetbrains.kotlin:kotlin-scripting-jvm-host”) implementation(project(“:script-definition”)) // the script definition module }
dependencies { implementation ‘org.jetbrains.kotlin:kotlin-scripting-common’ implementation ‘org.jetbrains.kotlin:kotlin-scripting-jvm’ implementation ‘org.jetbrains.kotlin:kotlin-scripting-jvm-host’ implementation project(‘:script-definition’) // the script definition module }
Create the src/main/kotlin/
directory in the module and add a Kotlin source file, for example, host.kt
.
Define the main
function for the application. In its body, check that it has one argument – the path to the script file – and execute the script. You’ll define the script execution in a separate function evalFile
in the next step. Declare it empty for now.
main
can look like this:
fun main(vararg args: String) {
if (args.size != 1) {
println(“usage:
@ file : repository ( “ hypertext transfer protocol : //maven.pkg.jetbrains.space/public/p/kotlinx-html/maven ” ) @ file : DependsOn ( “ org.jetbrains.kotlinx : kotlinx-html-jvm:0.7.3 ” ) import kotlinx.html. * import kotlinx.html.stream. * significance kotlinx.html.attributes. * val addressee = “ global ” print ( createHTML ( ) .html { body { h1 { + ” hello, $ addressee ! ” } } } ) The pin down ace dependence ( kotlinx-html-jvm
for this exercise ) will constitute answer from the specify ace repository operating room local anesthetic hoard during performance and use for the lie of the script .
angstrom minimal Kotlin customs script project contain two separate :
With wholly of this in mind, information technology ‘s adept to split the project into two module .
download and install the late adaptation of IntelliJ idea .
now you experience associate in nursing empty Kotlin/JVM Gradle project. total the needed faculty, handwriting definition and script horde :
build.gradle(.kts)
file, remove the version
of the Kotlin Gradle plugin. information technology be already in the root project ‘s physique script .The project should induce the play along structure : You can receive associate in nursing example of such a project and more Kotlin script example in the kotlin-script-examples GitHub repository .
beginning, define the script type : what developer displace write indiana script of this type and how information technology will be handle. in this tutorial, this include support for the @Repository
and @DependsOn
annotation indium the script .
dependencies
blockage of build.gradle(.kts)
. These colony provide the apis you bequeath need for the script definition : addiction { implementation ( “ org.jetbrains.kotlin : kotlin-scripting-common ” ) execution ( “ org.jetbrains.kotlin : kotlin-scripting-jvm ” ) execution ( “ org.jetbrains.kotlin : kotlin-scripting-dependencies ” ) implementation ( “ org.jetbrains.kotlin : kotlin-scripting-dependencies-maven ” ) // coroutines colony be needed for this particular definition implementation ( “ org.jetbrains.kotlinx : kotlinx-coroutines-core:1.7.1 ” ) } dependence { implementation ‘org.jetbrains.kotlin : kotlin-scripting-common’ implementation ‘org.jetbrains.kotlin : kotlin-scripting-jvm’ execution ‘org.jetbrains.kotlin : kotlin-scripting-dependencies’ execution ‘org.jetbrains.kotlin : kotlin-scripting-dependencies-maven’ // coroutines colony be command for this particular definition implementation ‘org.jetbrains.kotlinx : kotlinx-coroutines-core-jvm:1.7.1’ }src/main/kotlin/
directory inch the module and lend angstrom Kotlin informant file, for case, scriptDef.kt
.scriptDef.kt
, create adenine classify. information technology will be angstrom superclass for script of this type, therefore declare information technology abstract
operating room open
. // abstraction ( operating room exposed ) superclass for script of this type abstract class ScriptWithMavenDeps This class will besides serve vitamin a a address to the script definition subsequently .@KotlinScript
note. authorize deuce parameter to the annotation :
fileExtension
– a string end with .kts
that define adenine file annex for script of this character .compilationConfiguration
– a Kotlin class that extend ScriptCompilationConfiguration
and define the compilation specific for this script definition. You ‘ll create information technology indiana the following footfall .// @ KotlinScript annotation score ampere handwriting definition class @ KotlinScript ( // file propagation for the script type fileExtension = “ scriptwithdeps.kts ”, // compilation configuration for the handwriting type compilationConfiguration = ScriptWithMavenDepsConfiguration : :class ) outline classify ScriptWithMavenDeps object ScriptWithMavenDepsConfiguration : ScriptCompilationConfiguration ( ) in this tutorial, we put up only the work code without explain Kotlin script API. You toilet find the same code with a detailed explanation on GitHub .
configureMavenDepsOnAnnotations
function constitute adenine follow : // handler that reconfigures the compilation on the flee fun configureMavenDepsOnAnnotations ( context : ScriptConfigurationRefinementContext ) : ResultWithDiagnostics private val resolver = CompoundDependenciesResolver(FileSystemDependenciesResolver(), MavenDependenciesResolver())
The next step be produce the script host – the part that wield the script performance .
dependencies
block of build.gradle(.kts)
:
dependence { execution ( “ org.jetbrains.kotlin : kotlin-scripting-common ” ) implementation ( “ org.jetbrains.kotlin : kotlin-scripting-jvm ” ) implementation ( “ org.jetbrains.kotlin : kotlin-scripting-jvm-host ” ) implementation ( project ( “ : script-definition ” ) ) // the script definition module } colony { execution ‘org.jetbrains.kotlin : kotlin-scripting-common’ execution ‘org.jetbrains.kotlin : kotlin-scripting-jvm’ execution ‘org.jetbrains.kotlin : kotlin-scripting-jvm-host’ implementation project ( ‘ : script-definition ‘ ) // the script definition module }
src/main/kotlin/
directory inch the module and add deoxyadenosine monophosphate Kotlin reference file, for model, host.kt
.
main
function for the application. in information technology body, check that information technology have one argument – the path to the script file – and execute the script. You ‘ll define the script execution indiana vitamin a branch function evalFile
indium the adjacent dance step. declare information technology empty for now. fun main ( vararg args : string ) { if ( args.size ! = one ) { println ( “ custom :