gpt4 book ai didi

atlassian-plugin-sdk - 我在哪里将 atlassian-plugin-sdk 'allowGoogleTracking' 选项设置为 false?

转载 作者:行者123 更新时间:2023-12-04 08:21:10 37 4
gpt4 key购买 nike

我已经安装/设置了 atlassian-plugin-sdk,所以我可以研究 JIRA 插件开发。

但是,当我运行“atlas-run-standalone --product jira”命令并启动 JIRA 实例时,它会尝试连接到 google analytics 并拒绝连接(它被我们的代理阻止)。

它说我可以关闭此跟踪选项:

you may disable tracking by adding <allowGoogleTracking>false</allowGoogleTracking> to the amps plugin configuration in your pom.xml

我的问题是,我在哪里可以找到这个“allowGoogleTracking”选项?在哪个 pom.xml 中,我似乎无法在“atlassian-plugin-sdk”目录中找到一个。

我试过谷歌搜索和环顾四周,但我似乎无法找到任何他们告诉我我应该编辑哪个 pom.xml 文件的地方。

最佳答案

从文档:

AMPS sends basic usage events to Google analytics by default. To disable tracking, either:

  1. Add <allow.google.tracking>false</allow.google.tracking> to the <properties> section of your .m2/settings.xml file
  2. Include <allowGoogleTracking>false</allowGoogleTracking> in the amps plugin configuration in your pom.xml
  3. or pass -Dallow.google.tracking=false on the command line.


最简单的就是设置在你的 ~/.m2/settings.xml文件,在默认配置文件中。您也可以设置 skipAllPrompts同时:
<settings>
...
<profiles>
<profile>
<id>defaultProfile</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
...
<properties>
<allow.google.tracking>false</allow.google.tracking>
<skipAllPrompts>true</skipAllPrompts>
</properties>
</profile>
</profiles>
</settings>

关于atlassian-plugin-sdk - 我在哪里将 atlassian-plugin-sdk 'allowGoogleTracking' 选项设置为 false?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25360738/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com