diff --git a/README.md b/README.md
new file mode 100644
index 0000000..1d27f63
--- /dev/null
+++ b/README.md
@@ -0,0 +1,31 @@
+# [Kotlin](https://kotlinlang.org/) Extension for [bld](https://rife2.com/bld)
+
+[](https://opensource.org/licenses/Apache-2.0)
+[](https://www.oracle.com/java/technologies/javase/jdk17-archive-downloads.html)
+[](https://kotlinlang.org)
+[](https://rife2.com/bld)
+[](https://repo.rife2.com/#/releases/com/uwyn/rife2/bld-spring-boot)
+[](https://repo.rife2.com/#/snapshots/com/uwyn/rife2/bld-spring-boot)
+[](https://github.com/rife2/bld-spring-boot/actions/workflows/bld.yml)
+
+To install, please refer to the [extensions documentation](https://github.com/rife2/bld/wiki/Extensions).
+
+To compile the Kotlin source code from the current project:
+
+```java
+@BuildCommand(summary = "Compile the Kotlin project")
+public void compile() throws IOException {
+ new CompileKotlinOperation()
+ .fromProject(this)
+ .compileOptions("-verbose")
+ .execute();
+}
+```
+
+```text
+./bld compile
+```
+
+Please check the [Compile Operation documentation](https://rife2.github.io/bld-kotlin/rife/bld/extension/CompileKotlinOperation.html#method-summary) for all available configuration options.
+
+You may also want to look at the [example project](https://github.com/rife2/bld-kotlin/tree/main/examples/).
diff --git a/examples/.idea/vcs.xml b/examples/.idea/vcs.xml
new file mode 100644
index 0000000..6c0b863
--- /dev/null
+++ b/examples/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/examples/src/bld/java/com/example/ExampleBuild.java b/examples/src/bld/java/com/example/ExampleBuild.java
index a14bbbe..5e3f929 100644
--- a/examples/src/bld/java/com/example/ExampleBuild.java
+++ b/examples/src/bld/java/com/example/ExampleBuild.java
@@ -3,7 +3,6 @@ package com.example;
import rife.bld.BaseProject;
import rife.bld.BuildCommand;
import rife.bld.extension.CompileKotlinOperation;
-import rife.bld.operations.RunOperation;
import java.io.IOException;
import java.util.List;