File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed
components/configure-develocity-maven-extension Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -42,10 +42,10 @@ abstract class ApplyArgbash @Inject constructor(
4242 fun applyArgbash () {
4343 val argbash = argbashHome.get().file(" bin/argbash" ).asFile
4444 scriptTemplates.get().visit {
45- val parentRelativePath = relativePath.parent?.pathString
46- if ( ! isDirectory && parentRelativePath != null ) {
45+ if ( ! isDirectory) {
46+ val relPath = relativePath.parent.pathString
4747 val basename = file.nameWithoutExtension
48- val outputFile = outputDir.get().file(" $parentRelativePath /$basename .sh" ).asFile
48+ val outputFile = outputDir.get().file(" $relPath /$basename .sh" ).asFile
4949 outputFile.parentFile.mkdirs()
5050
5151 logger.info(" Applying argbash to $file " )
Original file line number Diff line number Diff line change 11plugins {
22 id(" java" )
3- id(" com.gradleup. shadow" ) version " 8.3.8 "
3+ id(" com.github.johnrengelman. shadow" ) version " 8.1.1 "
44}
55
66repositories {
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionSha256Sum =8fad3d78296ca518113f3d29016617c7f9367dc005f932bd9d93bf45ba46072b
4- distributionUrl =https\://services.gradle.org/distributions/gradle-9.0.0 -bin.zip
3+ distributionSha256Sum =bd71102213493060956ec229d946beee57158dbd89d0e62b91bca0fa2c5f3531
4+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.14.3 -bin.zip
55networkTimeout =10000
66validateDistributionUrl =true
77zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change 11#! /bin/sh
22
33#
4- # Copyright © 2015 the original authors.
4+ # Copyright © 2015-2021 the original authors.
55#
66# Licensed under the Apache License, Version 2.0 (the "License");
77# you may not use this file except in compliance with the License.
You can’t perform that action at this time.
0 commit comments