New scopes for accessing the analytics APIs
automerge: 98914dc

* commit '98914dca359a462e5fcfcb676274506009f370b8':
  New scopes for accessing the analytics APIs
diff --git a/src/com/google/gct/login/OAuthScopeRegistry.java b/src/com/google/gct/login/OAuthScopeRegistry.java
index 82fee39..d5f186e 100644
--- a/src/com/google/gct/login/OAuthScopeRegistry.java
+++ b/src/com/google/gct/login/OAuthScopeRegistry.java
@@ -33,6 +33,9 @@
     scopes.add("https://www.googleapis.com/auth/appengine.admin");
     scopes.add("https://www.googleapis.com/auth/cloud-platform");
     scopes.add("https://www.googleapis.com/auth/projecthosting");
+    scopes.add("https://www.googleapis.com/auth/analytics");
+    scopes.add("https://www.googleapis.com/auth/analytics.edit");
+    scopes.add("https://www.googleapis.com/auth/analytics.readonly");
     SCOPES = Collections.unmodifiableSortedSet(scopes);
   }