Skip to content

Commit

Permalink
migrated to go modules
Browse files Browse the repository at this point in the history
  • Loading branch information
mkobaly committed Feb 19, 2021
1 parent 23a992d commit 7feee7b
Show file tree
Hide file tree
Showing 4 changed files with 223 additions and 159 deletions.
2 changes: 0 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
#build tagit (runs on build server..windows)
go get -u github.com/kardianos/govendor
govendor sync
mkdir -p ./bin/web
cp ./web/* ./bin/web
env GOOS=windows GOARCH=386 go build -ldflags "-X main.Version=$(cat VERSION)" -o ./bin/jiraworklog.exe ./cmd/jiraworklog
Expand Down
30 changes: 30 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
module github.com/mkobaly/jiraworklog

go 1.15

require (
cloud.google.com/go v0.39.1-0.20190513200544-741d62a9e2a8
github.com/Bowery/prompt v0.0.0-20190916142128-fa8279994f75 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
github.com/dchest/safefile v0.0.0-20151022103144-855e8d98f185 // indirect
github.com/denisenkom/go-mssqldb v0.0.0-20190423183735-731ef375ac02
github.com/fatih/color v1.7.1-0.20181010231311-3f9d52f7176a
github.com/galdor/go-cmdline v1.1.1-0.20181217212330-f6df57bc77ea
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
github.com/jmoiron/sqlx v1.2.1-0.20190426154859-38398a30ed85
github.com/kardianos/govendor v1.0.9 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.2
github.com/mattn/go-colorable v0.1.1
github.com/mattn/go-isatty v0.0.8-0.20190424075123-c1975dc15c1d
github.com/pkg/errors v0.9.1
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
github.com/sirupsen/logrus v1.4.3-0.20190518135202-2a22dbedbad1
github.com/stretchr/objx v0.3.0
github.com/stretchr/testify v1.3.1-0.20190311161405-34c6fa2dc709
github.com/timshannon/bolthold v0.0.0-20190315152903-eed35b755671
go.etcd.io/bbolt v1.3.3-0.20190528202153-2eb7227adea1
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
golang.org/x/sys v0.0.0-20210219172841-57ea560cfca1
golang.org/x/tools v0.1.0 // indirect
gopkg.in/yaml.v2 v2.4.0
)
Loading

0 comments on commit 7feee7b

Please sign in to comment.