Setup Kotlin DataFrame in Maven
Kotlin DataFrame can be added as a usual Maven dependency to your Kotlin project.
Create a Kotlin project
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.
From the Language list, select Kotlin.
Select the Maven build system.
From the JDK list, select the JDK that you want to use in your project. The minimum supported version is JDK 8.
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 Add sample code checkbox to create a file with a sample
"Hello World!"application.Click Create.
You have successfully created a project with Maven.
Add Kotlin DataFrame Maven dependency
In your Maven build file (pom.xml), add the Kotlin DataFrame library as a dependency:
This will add general Kotlin DataFrame dependency, i.e., core API and implementation as well as all IO modules (excluding experimental ones).
You can add only the core API module and the specific modules you need.
Hello World
Let’s create your first DataFrame — a simple "Hello, World!" style example:
Kotlin DataFrame Compiler Plugin
Kotlin DataFrame Compiler Plugin enables automatic generation of extension properties and updates data schemas on-the-fly in Maven projects, making development with Kotlin DataFrame faster, more convenient, and fully type- and name-safe.
To enable the plugin in your Maven project, add it to the plugins section:
Project Example
See the Maven example project with the Kotlin DataFrame Compiler Plugin enabled on GitHub.
You can also download this project.
Next Steps
Once you’ve set up Kotlin DataFrame in your Maven project, continue with the Quickstart Guide to learn the basics of working with Kotlin DataFrame.
Explore detailed guides and real-world examples to see how Kotlin DataFrame helps with different data tasks.
Check out various IDEA examples using Kotlin DataFrame on GitHub.
Learn more about the compiler plugin.