Last Updated | 4 November 2016 |
In this tutorial we'll see how to
The easiest way to create a new application targeting JavaScript with Maven is to allow IntelliJ IDEA to configure the Maven project for us. Simply create a new Maven project in IntelliJ IDEA and once the project is created, add a new folder to host the Kotlin source code, removing the default Java one. The project should end up with the following structure
We can now add our first Kotlin source code file and IntelliJ IDEA will prompt us to configure the project for Kotlin. On doing so, we should select as target JavaScript
IntelliJ IDEA will add the corresponding entries for us in the Maven configuration.
If we're not using IntelliJ IDEA, we can configure the pom.xml
file manually to target JavaScript, by adding the following entries
<properties> <kotlin.version>1.2.41</kotlin.version> </properties> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-js</artifactId> <version>${kotlin.version}</version> </dependency> </dependencies> <build> <sourceDirectory>src/main/kotlin</sourceDirectory> <plugins> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> <version>${kotlin.version}</version> <executions> <execution> <id>compile</id> <phase>compile</phase> <goals> <goal>js</goal> </goals> </execution> <execution> <id>test-compile</id> <phase>test-compile</phase> <goals> <goal>test-js</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
On compiling, Maven will produce the following output
where we can see the output of our application, which is the kotlinjs-maven.js
file.
In order to use this, we also need to include the Kotlin standard library in our application, i.e. kotlin.js
, which was included as a dependency. By default, Maven does not expand the JAR as part of the build process, so we would need to add an additional step in our build to do so.
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack</id> <phase>compile</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-js</artifactId> <version>${kotlin.version}</version> <outputDirectory>${project.build.directory}/js/lib</outputDirectory> <includes>*.js</includes> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin>
For more information on the output generated please see Kotlin to JavaScript
Similar to when we're using IntelliJ IDEA build system or the command line, we can have the compiler output JavaScript to comply with a specific module system such as AMD, CommonJS or UMD.
In order to specify the module kind, we can add a configuration to our plugin as below
</executions> ... <configuration> <moduleKind>commonjs</moduleKind> <sourceMap>true</sourceMap> </configuration>
where moduleKind
can be
For more information about the different types of module outputs, please see Working with Modules
We can also see how we can define whether we want the compiler to generate sourcemaps for us by indicating this via the sourceMap
parameter.
© 2010–2018 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/docs/tutorials/javascript/getting-started-maven/getting-started-with-maven.html