What is the equivalent of gradle.properties in Buildship?

I need to define a system-level property for buildship, such as might be done with gradle.properties or init.gradle. Without this property defined buildship imports fail. Typically other Eclipse apps offer some sort of preference page where these things can be defined. How is this supposed to be handled with buildship?

Why not put it in gradle.properties?

I assume you’re referring to a gradle.properties in the project. I need it to live on the system level as it does outside of Eclipse. I shouldn’t need to add a gradle.properties to every project just to be able to import that project into Eclipse.

No, I’m referring to the gradle.properties in your Gradle user home.

Oh, so for Eclipse on Windows that would be gradle.properties in my home directory. Duh.

Thanks.