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:

  1. add <allow.google.tracking>false</allow.google.tracking> <properties> section of .m2/settings.xml file
  2. include <allowgoogletracking>false</allowgoogletracking> in amps plugin configuration in pom.xml
  3. 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

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -