You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+2
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
7
7
## [Unreleased]
8
+
9
+
## [1.7.1] - 2023-12-08
8
10
### Fixed
9
11
- Remove `Provider.forUseAtConfigurationTime method has been deprecated` warnings in recent versions of Gradle. ([#38](https://github.com/diffplug/blowdryer/pull/38))
If you have multiple loosely-related gradle projects in separate repositories, then you probably have these problems:
@@ -39,7 +39,7 @@ Then, in the `settings.gradle` for the project that you want to suck these into,
39
39
40
40
```gradle
41
41
plugins {
42
-
id 'com.diffplug.blowdryerSetup' version '1.7.0'
42
+
id 'com.diffplug.blowdryerSetup' version '1.7.1'
43
43
}
44
44
45
45
blowdryerSetup {
@@ -156,7 +156,7 @@ We recommend that your `settings.gradle` should look like this:
156
156
157
157
```gradle
158
158
plugins {
159
-
id 'com.diffplug.blowdryerSetup' version '1.7.0'
159
+
id 'com.diffplug.blowdryerSetup' version '1.7.1'
160
160
id 'acme.java' version '1.0.0' apply false
161
161
id 'acme.kotlin' version '2.0.0' apply false
162
162
}
@@ -173,7 +173,7 @@ First note that every plugin has `apply false` except for `com.diffplug.blowdrye
173
173
The second thing to note is `setPluginsBlockTo { it.file('plugin.versions') }`. That means that if you go to `github.com/acme/blowdryer-acme` and then open the `v1.4.5` tab and then go into the `src/main/resources` folder, you will find a file called `plugin.versions`. And the content of that file will be
174
174
175
175
```gradle
176
-
id 'com.diffplug.blowdryerSetup' version '1.7.0'
176
+
id 'com.diffplug.blowdryerSetup' version '1.7.1'
177
177
id 'acme.java' version '1.0.0' apply false
178
178
id 'acme.kotlin' version '2.0.0' apply false
179
179
```
@@ -242,7 +242,7 @@ The Gradle Kotlin DSL doesn't play well with the name-based extension object tha
[`Blowdryer.immutableUrl`](https://javadoc.io/static/com.diffplug/blowdryer/1.7.0/com/diffplug/blowdryer/Blowdryer.html#immutableUrl-java.lang.String-) returns a `File` containing the downloaded content of the given URL. It's on you to guarantee that the content of that URL is immutable.
270
+
[`Blowdryer.immutableUrl`](https://javadoc.io/static/com.diffplug/blowdryer/1.7.1/com/diffplug/blowdryer/Blowdryer.html#immutableUrl-java.lang.String-) returns a `File` containing the downloaded content of the given URL. It's on you to guarantee that the content of that URL is immutable.
271
271
272
-
When you setup the Blowdryer plugin in your `settings.gradle`, you're telling Blowdryer what URL scheme to use when resolving a call to [`Blowdryer.file`](https://javadoc.io/static/com.diffplug/blowdryer/1.7.0/com/diffplug/blowdryer/Blowdryer.html#file-java.lang.String-), for example:
272
+
When you setup the Blowdryer plugin in your `settings.gradle`, you're telling Blowdryer what URL scheme to use when resolving a call to [`Blowdryer.file`](https://javadoc.io/static/com.diffplug/blowdryer/1.7.1/com/diffplug/blowdryer/Blowdryer.html#file-java.lang.String-), for example:
0 commit comments