migrate to apid from 30x
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 6d364e1..ae319c7 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -20,4 +20,4 @@
 All submissions, including submissions by project members, require review. We
 use GitHub pull requests for this purpose. Consult
 [GitHub Help](https://help.github.com/articles/about-pull-requests/) for more
-information on using pull requests.
\ No newline at end of file
+information on using pull requests.
diff --git a/README.md b/README.md
index da829f6..e9cdb6b 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 # ApidAnalytics
 
-This is a core plugin for [apid](http://github.com/30x/apid) and is responsible for collecting analytics data for
+This is a core plugin for [apid](http://github.com/apid/apid) and is responsible for collecting analytics data for
 runtime traffic from Micro and Enterprise Gateway and puplishing to Apigee.
 
 ### Configuration
diff --git a/api.go b/api.go
index b93d327..b8470fc 100644
--- a/api.go
+++ b/api.go
@@ -15,7 +15,7 @@
 package apidAnalytics
 
 import (
-	"github.com/30x/apid-core"
+	"github.com/apid/apid-core"
 	"net/http"
 	"strings"
 )
diff --git a/apidAnalytics_suite_test.go b/apidAnalytics_suite_test.go
index 669b18c..e23a9c0 100644
--- a/apidAnalytics_suite_test.go
+++ b/apidAnalytics_suite_test.go
@@ -19,8 +19,8 @@
 	. "github.com/onsi/gomega"
 
 	"encoding/json"
-	"github.com/30x/apid-core"
-	"github.com/30x/apid-core/factory"
+	"github.com/apid/apid-core"
+	"github.com/apid/apid-core/factory"
 	"io/ioutil"
 	"net/http"
 	"net/http/httptest"
diff --git a/glide.yaml b/glide.yaml
index c12d13e..3a65a73 100644
--- a/glide.yaml
+++ b/glide.yaml
@@ -12,10 +12,10 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-package: github.com/30x/apidAnalytics
+package: github.com/apid/apidAnalytics
 
 import:
-- package: github.com/30x/apid-core
+- package: github.com/apid/apid-core
   version: master
 testImport:
 - package: github.com/onsi/ginkgo/ginkgo
diff --git a/init.go b/init.go
index 91351ea..f9f219a 100644
--- a/init.go
+++ b/init.go
@@ -16,7 +16,7 @@
 
 import (
 	"fmt"
-	"github.com/30x/apid-core"
+	"github.com/apid/apid-core"
 	"os"
 	"path/filepath"
 	"sync"
diff --git a/listener.go b/listener.go
index 9143e5b..57dc4c8 100644
--- a/listener.go
+++ b/listener.go
@@ -15,7 +15,7 @@
 package apidAnalytics
 
 import (
-	"github.com/30x/apid-core"
+	"github.com/apid/apid-core"
 	"github.com/apigee-labs/transicator/common"
 )
 
diff --git a/listener_test.go b/listener_test.go
index fc73c2f..aeaa198 100644
--- a/listener_test.go
+++ b/listener_test.go
@@ -15,7 +15,7 @@
 package apidAnalytics
 
 import (
-	"github.com/30x/apid-core"
+	"github.com/apid/apid-core"
 	"github.com/apigee-labs/transicator/common"
 )
 
diff --git a/pluginData.go b/pluginData.go
index bfb3dfa..205b36e 100644
--- a/pluginData.go
+++ b/pluginData.go
@@ -14,7 +14,7 @@
 
 package apidAnalytics
 
-import "github.com/30x/apid-core"
+import "github.com/apid/apid-core"
 
 var pluginData = apid.PluginData{
 	Name:    "apidAnalytics",