u6f6o
u6f6o

Reputation: 2190

Gradle distributions repository in artifactory outdated?

I set up my virtual repository in artifactory to cache gradle distribution libraries by adding a remote repository called 'gradle-distributions' as described here. This remote repository points to this repository

As it looks like, the stated remote repository is not up to date any more because the latest version offered is gradle-1.0-milestone-8-bin.zip.

Is there a workaround for this issue, like pointing to a different remote repository or whatsoever?

Thanks in advance.

Upvotes: 0

Views: 2263

Answers (2)

JBaruch
JBaruch

Reputation: 22893

Gradleware now distributes Gradle from http://services.gradle.org/distributions/

But I am not sure that's what you are looking for. If you need some Gradle modules to depend on (like the api), you should use gradleApi() dependency, as described here.

If you're looking for other dependencies, you can configure your Gradle to use standard Artifactory remote repositories like lib-releases and make sure that Bintray's JCenter is configured as a remote repository and included in remote-repos virtual repository.

Upvotes: 1

Nikita Skvortsov
Nikita Skvortsov

Reputation: 4923

Gradle has moved the repository to http://services.gradle.org/distributions/

Upvotes: 1

Related Questions