Skip to content

Commit

Permalink
com.github.ben-manes.versions version 0.21.0
Browse files Browse the repository at this point in the history
* Update unit tests to use it
* Update unit tests to expect updates of versions to update to it (which should make unit tests pass again)
* Update README to use it
* Update README to say that it is supported
  • Loading branch information
Patrik Erdes committed Mar 2, 2019
1 parent 4c3d769 commit 8bba5f6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Include in your `build.gradle`
```groovy
plugins {
id 'se.patrikerdes.use-latest-versions' version '0.2.8'
id 'com.github.ben-manes.versions' version '0.20.0'
id 'com.github.ben-manes.versions' version '0.21.0'
}
```

Expand All @@ -33,7 +33,7 @@ buildscript {
}
dependencies {
classpath "se.patrikerdes:gradle-use-latest-versions-plugin:0.2.8"
classpath 'com.github.ben-manes:gradle-versions-plugin:0.20.0'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.21.0'
}
}
Expand All @@ -48,7 +48,7 @@ Include in your `build.gradle.kts`
```groovy
plugins {
id("se.patrikerdes.use-latest-versions") version "0.2.8"
id("com.github.ben-manes.versions") version "0.20.0"
id("com.github.ben-manes.versions") version "0.21.0"
}
```

Expand All @@ -64,7 +64,7 @@ buildscript {
}
dependencies {
classpath("gradle.plugin.se.patrikerdes:gradle-use-latest-versions-plugin:0.2.8")
classpath("com.github.ben-manes:gradle-versions-plugin:0.20.0")
classpath("com.github.ben-manes:gradle-versions-plugin:0.21.0")
}
}
Expand Down Expand Up @@ -116,7 +116,7 @@ variables – and you build.gradle file will look like this:
```groovy
plugins {
id 'se.patrikerdes.use-latest-versions' version '0.2.8'
id 'com.github.ben-manes.versions' version '0.20.0' // <- Updated
id 'com.github.ben-manes.versions' version '0.21.0' // <- Updated
}
apply plugin: 'java'
Expand Down Expand Up @@ -251,7 +251,7 @@ dependencies {
## Compatibility

**Gradle version:** 2.8 - 4.10.2 (Updating plugin dependencies only work in 4.4+)<br/>
**Versions Plugin version:** 0.12.0 - 0.20.0<br/>
**Versions Plugin version:** 0.12.0 - 0.21.0<br/>
**JDK version:** 7 - 11 (7 is targeted but not tested, 11 is currently not tested but is known to work)

## Instructions for building this plugin from source
Expand Down
2 changes: 1 addition & 1 deletion src/test/groovy/se/patrikerdes/CurrentVersions.groovy
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package se.patrikerdes

class CurrentVersions {
public static final String VERSIONS = '0.20.0'
public static final String VERSIONS = '0.21.0'
public static final String JUNIT = '4.13-beta-2'
public static final String LOG4J = '1.2.17'
}

0 comments on commit 8bba5f6

Please sign in to comment.