fix(build): bump tests/end-to-end Gradle wrapper to 8.5
The end-to-end test project's wrapper was pinned to Gradle 8.2 while the
composite-included root sdk build applies com.vanniktech.maven.publish
0.33.0, which requires org.gradle.api.configuration.BuildFeatures
(introduced in Gradle 8.5+). Configuring the composite build under 8.2
failed with NoClassDefFoundError: BuildFeatures, aborting before any
tests ran:
An exception occurred applying plugin request
[id: 'com.vanniktech.maven.publish', version: '0.33.0']
> Could not generate a decorated class for type MavenPublishBaseExtension
> org/gradle/api/configuration/BuildFeatures
BUILD FAILED
Bump tests/end-to-end wrapper to 8.5 to match the root wrapper (already
8.5) and satisfy the plugin. Sync gradle-wrapper.jar / gradlew /
gradlew.bat to the 8.5 generation so the wrapper is consistent.
Signed-off-by: Pat Losoponkul <[email protected]>