Skip to content

Commit

Permalink
Merge pull request #151 from embulk/upgrade-gradle-wrapper-7.6.3
Browse files Browse the repository at this point in the history
Upgrade the base Gradle wrapper to 7.6.3, the patch release for the 7.6 series
  • Loading branch information
dmikurube authored Dec 13, 2023
2 parents 2da44bb + a57109c commit 45e0472
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- macOS-latest
- windows-latest
gradle:
- "7.6"
- "7.6.3"
steps:
- name: Set Git's core.autocrlf to false for Windows before checkout
run: git config --global core.autocrlf false
Expand Down
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ Gradle plugin for Embulk plugins
Versions
---------

| Gradle Plugin version | Supported Gradle version(s) |
| --------------------- | --------------------------- |
| v0.6.1 | Gradle 7.6.1 |
| Gradle Plugin version | Expected Gradle version |
| --------------------- | ----------------------- |
| v0.6.2 | Gradle 7.6 (7.6.3) |
| v0.6.1 | Gradle 7.6 (7.6.1) |
| v0.6.0 | Gradle 7.6 (7.6.1) |

Gradle 8 is not officially supported yet. (It may work, but not confirmed.)

Expand All @@ -20,7 +22,7 @@ plugins {
id "signing"
// Apply this Gradle plugin.
id "org.embulk.embulk-plugins" version "0.6.1"
id "org.embulk.embulk-plugins" version "0.6.2"
}
repositories {
Expand Down Expand Up @@ -221,7 +223,7 @@ signing {

### How to migrate from old `build.gradle`

1. Upgrade your Gradle wrapper to `7.6.1`.
1. Upgrade your Gradle wrapper to `7.6.3`.
2. Define `group`, `version`, and `description` in your Gradle project.
* `group` should **NOT** be `"org.embulk"` unless your project is under: https://github.com/embulk.
```
Expand Down Expand Up @@ -329,7 +331,7 @@ signing {
id "java"
id "maven-publish"
id "signing"
id "org.embulk.embulk-plugins" version "0.6.1"
id "org.embulk.embulk-plugins" version "0.6.2"
}
8. **Remove** unnecessary JRuby/Gradle plugin.
* Plugin application:
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.3-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 45e0472

Please sign in to comment.