If you are on MacOS and have brew
installed:
$ brew install kobalt $ which kobaltw /usr/local/bin/kobaltw
Download the zip file, unzip it and add the bin
directory to your $PATH
variable so that you can invoke the command kobaltw
:
cd yourLocation unzip kobalt-xxx.zip cd kobalt-xxx export PATH=$PWD/bin:$PATH
Change to your project directory and call the kobaltw
command with --init
:
cd ~/java/project kobaltw --init javato initialize a Java project, or
cd ~/java/project kobaltw --init kotlin
to initialize a Kotlin project.
java
or kotlin
as the --init
argument and refer to the mixed projects documentation for more details.
This command will do two things:
kobalt/src/Build.kt
file based on what was found in your project.kobaltw
) and a few additional files in the kobalt/wrapper
directory.
From now on, you can just use ./kobaltw
to build and you can ignore the kobaltw
on your path, which is only useful to install Kobalt on new projects. Since you will now build each project with its own ./kobaltw
command, they will use their own version of Kobalt.
If your project uses a standard folder structure, you can skip this section and try to build your project directly.
The build file generated by default might need some editing before you can build your project, so take a look at it and adjust whatever is necessary (e.g. package name, version, etc...)
Here is the Build.kt
for the JCommander project:
import com.beust.kobalt.* import com.beust.kobalt.plugin.java.* import com.beust.kobalt.plugin.packaging.* import com.beust.kobalt.plugin.publish.* val jcommander = project { name = "jcommander" group = "com.beust" artifactId = name version = "1.54" dependenciesTest { compile("org.testng:testng:6.9.9") } assemble { mavenJars { } } jcenter { publish = true } }
You can now attempt to build your project with Kobalt:
./kobaltw assemble
Build.kt
file for this command to work.
This will generate several files depending on the content of your build file. You can then launch IDEA and open this project directly.
If you're using Intellij IDEA, make sure you've installed the Kobalt plugin and then go to Tools → Kobalt → Sync Build File
. Once the build file is synchronized, the errors should
disappear
and you can now use all the regular functions of IDEA on Build.kt
just like any other Kotlin
files (auto completion, jump to symbol, etc...).
From this point, you can either learn how to install the Kobalt IDEA plug-in or read Kobalt's documentation.