Skip to content

Commit

Permalink
Release 0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
koral-- committed Aug 18, 2020
1 parent 340e2e8 commit d032754
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 14 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.2.5 - 2020-08-19
- Merge upstream changes 16873cb7a67b2b21287ba65c0ac89c7266f2d659
- Add compatiblity witn Anroid Gradle Plugin 4 [#64](https://github.com/koral--/gradle-pitest-plugin/issue/64)
- Fix report directory parameter handling [#63](https://github.com/koral--/gradle-pitest-plugin/issue/63)

# 0.2.4 - 2020-05-27
- Fix Gradle 6.4 execution break while trying to change mainClass [#60](https://github.com/koral--/gradle-pitest-plugin/issue/60)

Expand Down
28 changes: 15 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,32 +7,34 @@ which supports Android gradle projects.

```groovy
plugins {
id 'pl.droidsonroids.pitest' version '0.2.4'
id 'pl.droidsonroids.pitest' version '0.2.5'
}
```

```kotlin
plugins {
id("pl.droidsonroids.pitest") version "0.2.5"
}
```

## With Maven central repository
```groovy
```kotlin
buildscript {
repositories {
mavenCentral()
google()
// If you're using a version of Gradle lower than 4.1, you must instead use:
// maven {
// url 'https://maven.google.com'
// }
// An alternative URL is 'https://dl.google.com/dl/android/maven2/'
}
dependencies {
classpath 'pl.droidsonroids.gradle:gradle-pitest-plugin:0.2.4'
classpath "pl.droidsonroids.gradle:gradle-pitest-plugin:0.2.5"
}
}

apply plugin: 'com.android.application'
//or apply plugin: 'com.android.library'
//or apply plugin: 'com.android.test'
apply plugin: 'pl.droidsonroids.pitest'
plugins {
id("com.android.application")
//or id("com.android.library")
//or id("com.android.test")
id("pl.droidsonroids.pitest")
}
```

# Usage
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=0.2.4
VERSION=0.2.5
GROUP=pl.droidsonroids.gradle
POM_DESCRIPTION=Gradle plugin for PIT Mutation Testing in Android projects
POM_URL=https://github.com/koral--/gradle-pitest-plugin
Expand Down

0 comments on commit d032754

Please sign in to comment.