Questions tagged [gradle-properties]

Gradle is a project build automation tool that uses a Groovy DSL. Gradle properties are options that make it easy to configure the Java process that will be used to execute your build.

Gradle is a build automation tool that uses a DSL. Gradle properties are options that make it easy to configure the Java process that will be used to execute your build.

Links:

Related tags:

17 questions
0
votes
0 answers

Grade Unknown host 'services.gradle.org' error after entering proxy setting in Springboot

I am following the springboot starter here https://spring.io/guides/gs/spring-boot/ and using the starter code. I am getting a ERROR: Unknown host 'services.gradle.org'. You may need to adjust the proxy settings in Gradle. when I try to run…
echo
  • 767
  • 2
  • 9
  • 24
0
votes
1 answer

Gradle - Cannot set property on null object

I have a .gradle in which I want to set some project properties if a condition is true. def isRelease = project.getProperty('isRelease') if (isRelease) { println 'Detected a release' project.properties.'releaseCenter'.'uploadURL' =…
George Cimpoies
  • 884
  • 2
  • 14
  • 26
1
2