Skip to content

Commit 01651e4

Browse files
authored
Update to Gradle 8.9 (#998)
Just to stay up to date
1 parent ac72b68 commit 01651e4

File tree

6 files changed

+14
-9
lines changed

6 files changed

+14
-9
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@ jobs:
2121
epVersion: 2.14.0
2222
- os: macos-latest
2323
java: 11
24-
epVersion: 2.28.0
24+
epVersion: 2.29.0
2525
- os: ubuntu-latest
2626
java: 11
27-
epVersion: 2.28.0
27+
epVersion: 2.29.0
2828
- os: windows-latest
2929
java: 11
30-
epVersion: 2.28.0
30+
epVersion: 2.29.0
3131
- os: ubuntu-latest
3232
java: 17
33-
epVersion: 2.28.0
33+
epVersion: 2.29.0
3434
fail-fast: false
3535
runs-on: ${{ matrix.os }}
3636
steps:
@@ -61,7 +61,7 @@ jobs:
6161
ORG_GRADLE_PROJECT_epApiVersion: ${{ matrix.epVersion }}
6262
run: ./gradlew codeCoverageReport
6363
continue-on-error: true
64-
if: runner.os == 'Linux' && matrix.java == '11' && matrix.epVersion == '2.28.0' && github.repository == 'uber/NullAway'
64+
if: runner.os == 'Linux' && matrix.java == '11' && matrix.epVersion == '2.29.0' && github.repository == 'uber/NullAway'
6565
- name: Upload coverage reports to Codecov
6666
uses: codecov/codecov-action@v4
6767
with:

gradle/dependencies.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import org.gradle.util.VersionNumber
1919
// The oldest version of Error Prone that we support running on
2020
def oldestErrorProneVersion = "2.14.0"
2121
// Latest released Error Prone version that we've tested with
22-
def latestErrorProneVersion = "2.28.0"
22+
def latestErrorProneVersion = "2.29.0"
2323
// Default to using latest tested Error Prone version
2424
def defaultErrorProneVersion = latestErrorProneVersion
2525
def errorProneVersionToCompileAgainst = defaultErrorProneVersion

gradle/wrapper/gradle-wrapper.jar

51 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=a4b4158601f8636cdeeab09bd76afb640030bb5b144aafe261a5e8af027dc612
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
3+
distributionSha256Sum=d725d707bfabd4dfdc958c624003b3c80accc03f7037b5122c4b1d0ef15cecab
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
# See the License for the specific language governing permissions and
1616
# limitations under the License.
1717
#
18+
# SPDX-License-Identifier: Apache-2.0
19+
#
1820

1921
##############################################################################
2022
#
@@ -84,7 +86,8 @@ done
8486
# shellcheck disable=SC2034
8587
APP_BASE_NAME=${0##*/}
8688
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
87-
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90+
' "$PWD" ) || exit
8891

8992
# Use the maximum available, or set MAX_FD != -1 to use that value.
9093
MAX_FD=maximum

gradlew.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
@rem See the License for the specific language governing permissions and
1414
@rem limitations under the License.
1515
@rem
16+
@rem SPDX-License-Identifier: Apache-2.0
17+
@rem
1618

1719
@if "%DEBUG%"=="" @echo off
1820
@rem ##########################################################################

0 commit comments

Comments
 (0)