Invalid links in gradle build output

Hi,
I cloned the gradle/native-samples project from github and did ./gradlew it downloaded the following

./gradlew                            
Downloading https://services.gradle.org/distributions-snapshots/gradle-5.0-20180930035444+0000-bin.zip                
...............................................................................          
                                                                                                                      
Welcome to Gradle 5.0-20180930035444+0000!

And then I ran

~/projects/github/native-samples/cpp/simple-library$ ./gradlew build
<---<-------------> 0% CONFIGURING [0s]

> Task :runTest
[==========] Running 4 tests from 1 test case.
[----------] Global test environment set-up.
[----------] 4 tests from LinkedListTests
[ RUN      ] LinkedListTests.test_constructor
[       OK ] LinkedListTests.test_constructor (0 ms)
[ RUN      ] LinkedListTests.test_add
[       OK ] LinkedListTests.test_add (0 ms)
[ RUN      ] LinkedListTests.test_remove
[       OK ] LinkedListTests.test_remove (0 ms)
[ RUN      ] LinkedListTests.test_remove_missing
[       OK ] LinkedListTests.test_remove_missing (0 ms)
[----------] 4 tests from LinkedListTests (0 ms total)

[----------] Global test environment tear-down
[==========] 4 tests from 1 test case ran. (0 ms total)
[  PASSED  ] 4 tests.

Deprecated Gradle features were used in this build, making it incompatible with Gradle 6.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/5.0-20180930035444+0000/userguide/command_line_interface.html#sec:command_line_warnings

But when I try to visit the URL, it says the page doesn’t exist. Should we fix the URLs ? Thanks