Skip to content

Commit

Permalink
version 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
m-tanigt committed Mar 3, 2021
1 parent 38cf173 commit b737ac6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 14 deletions.
19 changes: 9 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit b737ac6

Please sign in to comment.