File tree 3 files changed +4
-4
lines changed
kotlinx.fuzz.gradle/src/main/kotlin/kotlinx/fuzz/gradle
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -34,14 +34,14 @@ pluginManagement {
34
34
2 . Add ` kotlinx.fuzz ` as a dependency:
35
35
``` kotlin
36
36
dependencies {
37
- testRuntimeOnly(" org.jetbrains:kotlinx.fuzz.jazzer:0.2.0 " )
37
+ testRuntimeOnly(" org.jetbrains:kotlinx.fuzz.jazzer:0.2.1 " )
38
38
}
39
39
```
40
40
41
41
3 . Apply ` kotlinx.fuzz ` plugin to your project:
42
42
``` kotlin
43
43
plugins {
44
- id(" kotlinx.fuzz.gradle" ) version " 0.2.0 "
44
+ id(" kotlinx.fuzz.gradle" ) version " 0.2.1 "
45
45
}
46
46
```
47
47
Original file line number Diff line number Diff line change 1
1
const val GROUP_ID = " org.jetbrains"
2
- const val VERSION = " 0.2.0 "
2
+ const val VERSION = " 0.2.1 "
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ abstract class KFuzzPlugin : Plugin<Project> {
31
31
val log = Logging .getLogger(KFuzzPlugin ::class .java)!!
32
32
33
33
override fun apply (project : Project ) {
34
- val pluginVersion = " 0.2.0 "
34
+ val pluginVersion = " 0.2.1 "
35
35
project.dependencies {
36
36
add(" testImplementation" , " org.jetbrains:kotlinx.fuzz.api:$pluginVersion " )
37
37
add(" testRuntimeOnly" , " org.jetbrains:kotlinx.fuzz.junit:$pluginVersion " )
You can’t perform that action at this time.
0 commit comments