diff --git a/README.md b/README.md index 30a94c3..fa2101d 100644 --- a/README.md +++ b/README.md @@ -8,25 +8,24 @@ JTDog is a Gradle plugin for dynamic test smells detection. Using the [plugins DSL](https://docs.gradle.org/current/userguide/plugins.html#sec:plugins_block): ```groovy plugins { - id 'com.github.m-tanigt.jtdog' version '1.0.0' + id 'com.github.m-tanigt.jtdog' version '0.8.0' } ``` Using [legacy plugin application](https://docs.gradle.org/current/userguide/plugins.html#sec:old_plugin_application): ```groovy buildscript { - repositories { - maven { - url 'https://plugins.gradle.org/m2/' - } - } - - dependencies { - classpath 'com.github.kusumotolab:jtdog-plugin:1.0.0' + repositories { + maven { + url "https://plugins.gradle.org/m2/" } + } + dependencies { + classpath "gradle.plugin.com.github.m-tanigt:jtdog-plugin:0.8.0" + } } -apply plugin: 'com.github.m-tanigt.jtdog' +apply plugin: "com.github.m-tanigt.jtdog" ``` ## Configuring The Plugin diff --git a/build.gradle b/build.gradle index 5ba397d..ce52589 100644 --- a/build.gradle +++ b/build.gradle @@ -18,11 +18,11 @@ dependencies { implementation group: 'junit', name: 'junit', version: '4.13' } -sourceCompatibility = 11 -targetCompatibility = 11 +sourceCompatibility = 8 +targetCompatibility = 8 -group 'com.github.kusumotolab' -version '1.0.0' +group 'com.github.m-tanigt' +version '0.8.0' gradlePlugin { plugins {