0

A problem occurred while configuring the root project 'preparator'.

> Could not resolve all files for configuration ':classpath'.
> Could not find com.github.jengelman.gradle.plugins:shadow:2.0.1.

Searched in the following locations:

         file:/Users/lion-mane/.m2/repository/com/github/jengelman/gradle/plugins/shadow/2.0.1/shadow-2.0.1.pom
         file:/Users/lion-mane/.m2/repository/com/github/jengelman/gradle/plugins/shadow/2.0.1/shadow-2.0.1.jar
         https://repo1.maven.org/maven2/com/github/jengelman/gradle/plugins/shadow/2.0.1/shadow-2.0.1.pom
         https://repo1.maven.org/maven2/com/github/jengelman/gradle/plugins/shadow/2.0.1/shadow-2.0.1.jar

Required by:
project :
Phantômaxx
  • 37,901
  • 21
  • 84
  • 115

1 Answers1

3

Looks like you only have mavenCentral() in your repositories based on the search paths provided.

You need JCenter instead.

buildscript {
    repositories {
        jcenter()
    }
OneCricketeer
  • 179,855
  • 19
  • 132
  • 245