Skip to content

Commit 80b178f

Browse files
committed
docs: readme fix
1 parent bb18fee commit 80b178f

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ More specifically this plugin does the following:
1313

1414
1. Applies the `kotlin-jvm` and `KAPT` gradle plugins
1515
2. Adds common Kotlin dependencies, such as:
16-
1. `kotlin-reflect`
17-
2. `kotlin-coroutines`
18-
3. [`kotest` (with extensions)](https://github.com/kotest/kotest)
19-
4. [`mockk`](https://github.com/mockk/mockk)
20-
5. [`Skek Framework` (with extensions)](https://github.com/spekframework/spek/)
21-
6. [`mockito-kotlin`](https://github.com/nhaarman/mockito-kotlin)
22-
7. and [others](https://github.com/driver733/gradle-kotlin-setup-plugin/blob/master/src/main/kotlin/com/driver733/gradle-kotlin-setup-plugin.gradle.kts)
16+
1. `kotlin std lib` (added by the `kotlin-jvm` plugin)
17+
2. `kotlin-reflect`
18+
3. `kotlin-coroutines`
19+
4. [`kotest` (with extensions)](https://github.com/kotest/kotest)
20+
5. [`mockk`](https://github.com/mockk/mockk)
21+
6. [`Spek Framework` (with extensions)](https://github.com/spekframework/spek/)
22+
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)
2324
3. Configures `kotlinOptions.jvmTarget` to match the `JavaPlugin.sourceCompatibility`
2425
4. Resolves the Kotlin's [incompatibility](https://stackoverflow.com/a/35530223/2441104) with Lombok by delomboking
2526
the project's java source code and pointing the `JavaPlugin` compile tasks to the delomboked source code files.
26-
5. Configures the `test` Gradle task to use the `JUnit Platform` (aka JUnit 5).
2727

2828
## Distribution
2929

@@ -45,7 +45,7 @@ Add this to your project's `build.gradle`:
4545

4646
```
4747
plugins {
48-
id "com.driver733.gradle-kotlin-setup-plugin" version "3.1.0"
48+
id "com.driver733.gradle-kotlin-setup-plugin" version "4.0.0"
4949
}
5050
```
5151

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

5656
```
5757
plugins {
58-
id("com.driver733.gradle-kotlin-setup-plugin") version "3.1.0"
58+
id("com.driver733.gradle-kotlin-setup-plugin") version "4.0.0"
5959
}
6060
```
6161

0 commit comments

Comments
 (0)