Skip to content
This repository was archived by the owner on Sep 7, 2021. It is now read-only.
This repository is currently being migrated. It's locked while the migration is in progress.

Commit c9b14f9

Browse files
authored
move depends package from github.com to customize domain (#1327)
1 parent 7c4e044 commit c9b14f9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+74
-73
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ jobs:
3535
- checkout
3636

3737
- run: go get -t -d -v ./...
38-
- run: go get -u github.com/go-xorm/core
39-
- run: go get -u github.com/go-xorm/builder
38+
- run: go get -u xorm.io/core
39+
- run: go get -u xorm.io/builder
4040
- run: GO111MODULE=off go build -v
4141
- run: GO111MODULE=on go build -v
4242

.drone.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ pipeline:
5959
image: golang:${GO_VERSION}
6060
commands:
6161
- go get -t -d -v ./...
62-
- go get -u github.com/go-xorm/core
63-
- go get -u github.com/go-xorm/builder
62+
- go get -u xorm.io/core
63+
- go get -u xorm.io/builder
6464
- go build -v
6565
when:
6666
event: [ push, pull_request ]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Xorm is a simple and powerful ORM for Go.
2828

2929
* Optimistic Locking support
3030

31-
* SQL Builder support via [github.com/go-xorm/builder](https://github.com/go-xorm/builder)
31+
* SQL Builder support via [xorm.io/builder](https://xorm.io/builder)
3232

3333
* Automatical Read/Write seperatelly
3434

cache_lru.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"sync"
1111
"time"
1212

13-
"github.com/go-xorm/core"
13+
"xorm.io/core"
1414
)
1515

1616
// LRUCacher implments cache object facilities

cache_lru_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package xorm
77
import (
88
"testing"
99

10-
"github.com/go-xorm/core"
10+
"xorm.io/core"
1111
"github.com/stretchr/testify/assert"
1212
)
1313

cache_memory_store.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package xorm
77
import (
88
"sync"
99

10-
"github.com/go-xorm/core"
10+
"xorm.io/core"
1111
)
1212

1313
var _ core.CacheStore = NewMemoryStore()

dialect_mssql.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"strconv"
1212
"strings"
1313

14-
"github.com/go-xorm/core"
14+
"xorm.io/core"
1515
)
1616

1717
var (

dialect_mssql_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"reflect"
99
"testing"
1010

11-
"github.com/go-xorm/core"
11+
"xorm.io/core"
1212
)
1313

1414
func TestParseMSSQL(t *testing.T) {

dialect_mysql.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"strings"
1414
"time"
1515

16-
"github.com/go-xorm/core"
16+
"xorm.io/core"
1717
)
1818

1919
var (

dialect_oracle.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"strconv"
1212
"strings"
1313

14-
"github.com/go-xorm/core"
14+
"xorm.io/core"
1515
)
1616

1717
var (

0 commit comments

Comments
 (0)