Skip to content

Commit 570d11a

Browse files
committed
docs: readme updated
1 parent eb53a91 commit 570d11a

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

README.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ This plugin makes it easy to set up Koltin in a new project as well as in an exi
1111

1212
More specifically this plugin does the following:
1313

14-
1. Applies the `kotlin-jvm` and `KAPT` gradle plugins
14+
1. Applies the following gradle plugins:
15+
1. `kotlin-jvm`
16+
2. `KAPT`
17+
3. [`detekt`](https://github.com/detekt/detekt)
1518
2. Adds common Kotlin dependencies, such as:
1619
1. `kotlin std lib` (added by the `kotlin-jvm` plugin)
1720
2. `kotlin-reflect`
@@ -20,7 +23,7 @@ More specifically this plugin does the following:
2023
5. [`mockk`](https://github.com/mockk/mockk)
2124
6. [`Spek Framework` (with extensions)](https://github.com/spekframework/spek/)
2225
7. [`mockito-kotlin`](https://github.com/nhaarman/mockito-kotlin)
23-
8. and [others](https://github.com/driver733/gradle-kotlin-setup-plugin/blob/master/src/main/kotlin/com/driver733/gradle-kotlin-setup-plugin.gradle.kts)
26+
and [others](https://github.com/driver733/gradle-kotlin-setup-plugin/blob/master/src/main/kotlin/com/driver733/gradle-kotlin-setup-plugin.gradle.kts)
2427
3. Configures `kotlinOptions.jvmTarget` to match the `JavaPlugin.sourceCompatibility`
2528
4. Resolves the Kotlin's [incompatibility](https://stackoverflow.com/a/35530223/2441104) with Lombok by delomboking
2629
the project's java source code and pointing the `JavaPlugin` compile tasks to the delomboked source code files.
@@ -45,7 +48,7 @@ Add this to your project's `build.gradle`:
4548

4649
```
4750
plugins {
48-
id "com.driver733.gradle-kotlin-setup-plugin" version "4.0.0"
51+
id "com.driver733.gradle-kotlin-setup-plugin" version "4.1.0"
4952
}
5053
```
5154

@@ -55,7 +58,7 @@ Add this to your project's `build.gradle.kts`:
5558

5659
```
5760
plugins {
58-
id("com.driver733.gradle-kotlin-setup-plugin") version "4.0.0"
61+
id("com.driver733.gradle-kotlin-setup-plugin") version "4.1.0"
5962
}
6063
```
6164

0 commit comments

Comments
 (0)