File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
kotlinx.fuzz.gradle/src/main/kotlin/kotlinx/fuzz/gradle Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -38,14 +38,14 @@ repositories {
38382 . Add ` kotlinx.fuzz ` as a dependency:
3939``` kotlin
4040dependencies {
41- testRuntimeOnly(" org.jetbrains:kotlinx.fuzz.jazzer:0.2.4 " )
41+ testRuntimeOnly(" org.jetbrains:kotlinx.fuzz.jazzer:1.0.0 " )
4242}
4343```
4444
45453 . Apply ` kotlinx.fuzz ` plugin to your project:
4646``` kotlin
4747plugins {
48- id(" org.jetbrains.kotlinx.fuzz" ) version " 0.2.4 "
48+ id(" org.jetbrains.kotlinx.fuzz" ) version " 1.0.0 "
4949}
5050```
5151
Original file line number Diff line number Diff line change 11const val GROUP_ID = " org.jetbrains"
2- const val VERSION = " 0.2.4 "
2+ const val VERSION = " 1.0.0 "
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ abstract class KFuzzPlugin : Plugin<Project> {
3333 private val log = Logging .getLogger(KFuzzPlugin ::class .java)!!
3434
3535 override fun apply (project : Project ) {
36- val pluginVersion = " 0.2.4 "
36+ val pluginVersion = " 1.0.0 "
3737 project.dependencies {
3838 add(" testImplementation" , " org.jetbrains:kotlinx.fuzz.api:$pluginVersion " )
3939 add(" testRuntimeOnly" , " org.jetbrains:kotlinx.fuzz.junit:$pluginVersion " )
You can’t perform that action at this time.
0 commit comments