Where do I set the atlassian-plugin-sdk 'allowGoogleTracking' option to false? -
i have installed/setup atlassian-plugin-sdk can jira plugin development.
however, when run "atlas-run-standalone --product jira" command , starts jira instance, tries connect google analytics , gets connection refused (its being blocked our proxy).
it says can turn tracking option off:
you may disable tracking adding <allowgoogletracking>false</allowgoogletracking> amps plugin configuration in pom.xml
my question is, find "allowgoogletracking" option? in pom.xml cant seem find 1 in "atlassian-plugin-sdk" directory.
i have tried googling , looking around, cant seem find anywhere tell me pom.xml file supposed edit.
from documentation:
amps sends basic usage events google analytics default. disable tracking, either:
- add
<allow.google.tracking>false</allow.google.tracking>
<properties>
section of.m2/settings.xml
file- include
<allowgoogletracking>false</allowgoogletracking>
in amps plugin configuration inpom.xml
- or pass
-dallow.google.tracking=false
on command line.
the simplest set in ~/.m2/settings.xml
file, in default profile. may wish set skipallprompts
@ same time:
<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>
Comments
Post a Comment