Skip to content
This repository was archived by the owner on Apr 12, 2019. It is now read-only.

Commit b71f427

Browse files
committed
Migrate to go mod
1 parent d945eda commit b71f427

File tree

6 files changed

+42
-94
lines changed

6 files changed

+42
-94
lines changed

Gopkg.lock

Lines changed: 0 additions & 38 deletions
This file was deleted.

Gopkg.toml

Lines changed: 0 additions & 34 deletions
This file was deleted.

go.mod

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
module code.gitea.io/git
2+
3+
require (
4+
github.com/Unknwon/com v0.0.0-20170819223952-7677a1d7c113
5+
github.com/davecgh/go-spew v0.0.0-20160907170601-6d212800a42e // indirect
6+
github.com/gopherjs/gopherjs v0.0.0-20181103185306-d547d1d9531e // indirect
7+
github.com/jtolds/gls v4.2.1+incompatible // indirect
8+
github.com/mcuadros/go-version v0.0.0-20161105183618-257f7b9a7d87
9+
github.com/pmezard/go-difflib v0.0.0-20151028094244-d8ed2627bdf0 // indirect
10+
github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d // indirect
11+
github.com/smartystreets/goconvey v0.0.0-20181108003508-044398e4856c // indirect
12+
github.com/stretchr/testify v0.0.0-20160925220609-976c720a22c8
13+
)

go.sum

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
github.com/Unknwon/com v0.0.0-20170819223952-7677a1d7c113 h1:YwXm6KwmrA5R5yJRhcnpqRUHmBXSKciHuWtK9zP5qKQ=
2+
github.com/Unknwon/com v0.0.0-20170819223952-7677a1d7c113/go.mod h1:KYCjqMOeHpNuTOiFQU6WEcTG7poCJrUs0YgyHNtn1no=
3+
github.com/davecgh/go-spew v0.0.0-20160907170601-6d212800a42e h1:PuhFC+IBoXcNHhkaUTRc+kNN0MtTMPFoWWBXyNMw7ww=
4+
github.com/davecgh/go-spew v0.0.0-20160907170601-6d212800a42e/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
5+
github.com/gopherjs/gopherjs v0.0.0-20181103185306-d547d1d9531e h1:JKmoR8x90Iww1ks85zJ1lfDGgIiMDuIptTOhJq+zKyg=
6+
github.com/gopherjs/gopherjs v0.0.0-20181103185306-d547d1d9531e/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY=
7+
github.com/jtolds/gls v4.2.1+incompatible h1:fSuqC+Gmlu6l/ZYAoZzx2pyucC8Xza35fpRVWLVmUEE=
8+
github.com/jtolds/gls v4.2.1+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU=
9+
github.com/mcuadros/go-version v0.0.0-20161105183618-257f7b9a7d87 h1:SDD/Ssrg7y8McDKzCytoY2OsBD5U5ERzEiFsnryQMZc=
10+
github.com/mcuadros/go-version v0.0.0-20161105183618-257f7b9a7d87/go.mod h1:76rfSfYPWj01Z85hUf/ituArm797mNKcvINh1OlsZKo=
11+
github.com/pmezard/go-difflib v0.0.0-20151028094244-d8ed2627bdf0 h1:GD+A8+e+wFkqje55/2fOVnZPkoDIu1VooBWfNrnY8Uo=
12+
github.com/pmezard/go-difflib v0.0.0-20151028094244-d8ed2627bdf0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
13+
github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d h1:zE9ykElWQ6/NYmHa3jpm/yHnI4xSofP+UP6SpjHcSeM=
14+
github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc=
15+
github.com/smartystreets/goconvey v0.0.0-20181108003508-044398e4856c h1:Ho+uVpkel/udgjbwB5Lktg9BtvJSh2DT0Hi6LPSyI2w=
16+
github.com/smartystreets/goconvey v0.0.0-20181108003508-044398e4856c/go.mod h1:XDJAKZRPZ1CvBcN2aX5YOUTYGHki24fSF0Iv48Ibg0s=
17+
github.com/stretchr/testify v0.0.0-20160925220609-976c720a22c8 h1:8wC8CPnIozQ1PGwYrFIxpYp10uhkEYhuTnoEJWrVj84=
18+
github.com/stretchr/testify v0.0.0-20160925220609-976c720a22c8/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=

vendor/github.com/stretchr/testify/LICENCE.txt

Lines changed: 0 additions & 22 deletions
This file was deleted.

vendor/modules.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# github.com/Unknwon/com v0.0.0-20170819223952-7677a1d7c113
2+
github.com/Unknwon/com
3+
# github.com/davecgh/go-spew v0.0.0-20160907170601-6d212800a42e
4+
github.com/davecgh/go-spew/spew
5+
# github.com/mcuadros/go-version v0.0.0-20161105183618-257f7b9a7d87
6+
github.com/mcuadros/go-version
7+
# github.com/pmezard/go-difflib v0.0.0-20151028094244-d8ed2627bdf0
8+
github.com/pmezard/go-difflib/difflib
9+
# github.com/stretchr/testify v0.0.0-20160925220609-976c720a22c8
10+
github.com/stretchr/testify/assert
11+
github.com/stretchr/testify/require

0 commit comments

Comments
 (0)