Questions tagged [gradle-wrapper]

26 questions
0
votes
1 answer

Cordova shows deprecated sdk while the sdk is the latest Cannot build

Checking Java JDK and Android SDK versions ANDROID_SDK_ROOT=undefined (recommended setting) ANDROID_HOME=C:\Users\andre\AppData\Local\Android\Sdk (DEPRECATED) Using Android SDK: C:\Users\andre\AppData\Local\Android\Sdk FAILURE: Build failed with…
0
votes
0 answers

Gradle wrapper is not downloading the gradle bin zip

I've been scratching my head over this problem, can't seem to figure out at all what is going on. So for context, I've been working with Maven all this while and the maven wrapper has never given this error, but this time the project requirements…
gavi
  • 1
  • 2
0
votes
0 answers

gradle wrapper properties not found error Intellij IDEA

I'm creating a new project using a template, and it gives this build error. Help!
0
votes
1 answer

Gradle-release plugin and gradle wrapper distributionUrl problem

I have a gradle project with gradle wrapper. For wrapper I have gradle-wrapper.properties with distributionUrl pointing to https://services.gradle.org/distributions/gradleXX-all.zip for local development. In my Jenkis release pipelinee i don't have…
brtk
  • 65
  • 1
  • 6
0
votes
1 answer

Can I change the location of the .gradle directory?

The first time you trigger a gradle task using gradle wrapper, it will create a .gradle folder in which a gradle distribution gets unzipped. Is there a way to change the location of that .gradle folder? Setting the GRADLE_USER_HOME environment…
TweeZz
  • 4,779
  • 5
  • 39
  • 53
0
votes
0 answers

project can`t find gradle wrapper

PLEASE HELP((( I keep getting this error for 10000years now. Google says its because of gradle-wrapper.jar is missing, but here it is at my project. What should I do?Where in the windows directory should gradle wrapper be? OR how to install gradle…
0
votes
2 answers

Why won't Gradle subproject upgrade?

I have the following existing structure repo |--orchestration |--build.gradle |--settings.gradle |--gradle | |--7.5.1 |--engine | |--build.gradle | |--gradle | | |--6.7.1 |--process | |--build.gradle | …
Eric Kolotyluk
  • 1,958
  • 2
  • 21
  • 30
0
votes
0 answers

Gradle wrapper version conflict

I Have the following build.gradle file: buildscript { ext { scalaVersion = '2.12.10' gatlingVersion = '3.8.4' } all { resolutionStrategy { force("com.google.protobuf:protobuf-java:2.4.1") } …
Rain03
  • 41
  • 1
  • 7
0
votes
0 answers

Could not find method compile() on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler

I'm trying to install Axelor ERP opensource project as indicated in this video, but after trying to build first time with the provided command: gradlew clean classes build -x test cleanEclipse eclipse I got: General error during semantic…
jechaviz
  • 551
  • 1
  • 9
  • 23
0
votes
2 answers

The specified Gradle distribution 'https://services.gradle.org/distributions/gradle-7.2-bin.zip' does not exist

In Android Studio, I am getting the following error when trying to run my app on an Android device: The specified Gradle distribution 'https://services.gradle.org/distributions/gradle-7.2-bin.zip' does not exist. All my Android Studio projects are…
liiil
  • 51
  • 5
-1
votes
1 answer

I wanna make apk for react native app and there is an error Gradle build failed with unknown error

implementation 'com.facebook.react:react-native:[0.32,)' I tried to do this but got the same error: and I update all required dependences and still same error and can't solve it so my some soultions if any one face same error
1
2