File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed
examples/kotlin-dataframe-plugin-example/gradle/wrapper Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -319,3 +319,16 @@ kotlinPublications {
319319 }
320320 }
321321}
322+
323+ tasks.assemble {
324+ // subprojects use the Gradle version from the root project, so let's sync them to ensure standalone version will build as well.
325+ doLast {
326+ val source = file(" gradle/wrapper/gradle-wrapper.properties" )
327+ listOf (" examples/android-example" , " examples/kotlin-dataframe-plugin-example" ).forEach { sub ->
328+ val target = file(" $sub /gradle/wrapper/gradle-wrapper.properties" )
329+ if (source.readText() != target.readText()) {
330+ source.copyTo(target, overwrite = true )
331+ }
332+ }
333+ }
334+ }
Original file line number Diff line number Diff line change 1- # Fri Jul 25 14:30:49 AMT 2025
21distributionBase =GRADLE_USER_HOME
32distributionPath =wrapper/dists
43distributionUrl =https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
4+ networkTimeout =10000
5+ validateDistributionUrl =true
56zipStoreBase =GRADLE_USER_HOME
67zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments