不使用 jar 文件共享或导出外部工具

Share or Export External tools without using jar-file

我创建了自定义 "运行 配置" 并在他身上使用 "外部工具"
我的问题是 "external tools" 位于本地,项目的其他开发人员不会收到它,我如何将它添加到项目中?

一种解决方案是导出工作室设置,得到一个 jar 文件,但是每个开发人员都必须手动导入这个 jar 文件,我想避免这种情况。

也许这会对你有所帮助
https://intellij-support.jetbrains.com/hc/en-us/community/posts/206187849-Sharing-external-tool-config-via-version-control

There are some "hackish" ways you could probably handle this (via symlinks or junctions), if you just need to run a script, I would recommend using Ant (or even Gradle). Either have Ant do the actual work, or write a simple ant script that wraps and launches the external script (via the or target for example). The script, the ant build, and its "Before Launch" configuration can then all be committed to version control.