This message was deleted.
# community-support
s
This message was deleted.
v
That's more a question to JetBrains probably. But I think the answer is no, if I got the question right.
c
If your question was about setting the gradle wrapper to be set for every project, that can be achieved with the settings for new projects. File | New Projects Setup | Settings for New Projects then File | Settings | Build, Execution, Deployment | Build Tools | Gradle
v
I don't think that was the question 🙂
c
The second part? I don't know. But anyway it's a IDEA question 😄
☝️ 1
s
@Vampire is correct. couldn't think of a more appropriate channel for it, for intellij anyway
v
There is probably no approprate channel, it is more a question for JetBrains support
👍 1
c
@Shaun Reich Just an idea that I had: With some fiddling, you can probably create run configuration files in the project (that could be done with a gradle plugin or a script). Or you copy them (run configurations manually created and stored in one project) manually from one project to another. Would that help?
v
Actually, the question is, what the point is. If he wants to execute the
wrapper
task, he can always do
Ctrl-Ctrl
and then write in
gradle wrapper
even if the project is not a Gradle build. But actually, it would not help as you can only use the
wrapper
task if the project is already a Gradle build. And if the project is already a Gradle build, it is also available in the Gradle tool window. I just didn't ask for further details to clarify, because the question is off-topic. 😉
s
@Christoph Hermann yep, that's an option but the issue for me is that it's per-project only. kinda surprises me sometimes how intellij often doesn't have global configs. and apparently, intellij does not store history across projects, nor favorite tasks you might add. having to memorize special syntax is just a waste of time for me. the gradle wrapper version param is --gradle-version=x.x, which is a little unique too. especially if you ever have more unique syntaxes, since gradle (+ IDE integrations) does not offer autocomplete abilities for 'gradle mytask --property-thing=...'
👍 1
thank you