i want chenge “org.eclipse.buildship.core.prefs” this line : connection.gradle.distribution=GRADLE_DISTRIBUTION(LOCAL_INSTALLATION(to/gradle/path))
becuse in this config file i should determine gradle installed bin path ,but i working in developer team and i dont want to determine my gradle absolute path,becuse others team members forced to changes your path or change your gradle installed path according to my config file(after clone the project),and others system might be windos or linux or …,for this reason i want use enviroment variable like GRADLE_HOME to others to be comfortable and just define one enviroment variable for yours gradle and in this config file refer to the GRADLE_HOME and change this line to:
connection.gradle.distribution=GRADLE_DISTRIBUTION(LOCAL_INSTALLATION($GRADLE_HOME))
but not working
how to solve this problem.