Skip to content

Commit 934cb55

Browse files
committed
Add a plugin resolution to use an older execfork version for Java 8 CI
1 parent 5aa5a94 commit 934cb55

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

settings.gradle

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,17 @@
1414
* limitations under the License.
1515
*/
1616

17+
// Need to use an older version of execfork for Java 8
18+
pluginManagement {
19+
resolutionStrategy {
20+
eachPlugin {
21+
if (requested.id.name == 'execfork' && JavaVersion.current() == JavaVersion.VERSION_1_8) {
22+
useModule('com.github.psxpaul.execfork:com.github.psxpaul.execfork.gradle.plugin:0.1.13')
23+
}
24+
}
25+
}
26+
}
27+
1728
include(
1829
'thymeleaf-layout-dialect',
1930
'thymeleaf-layout-dialect-benchmark',

thymeleaf-layout-dialect-benchmark/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ plugins {
2424
id 'groovy'
2525
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
2626
id 'org.springframework.boot' version '2.6.3'
27-
id 'com.github.psxpaul.execfork' version '0.1.14'
27+
id 'com.github.psxpaul.execfork' version '0.1.15'
2828
}
2929
apply from: 'https://raw.githubusercontent.com/ultraq/gradle-support/4.0.1/gradle-support.gradle'
3030

0 commit comments

Comments
 (0)