mirror of
https://github.com/appleboy/drone-jenkins.git
synced 2026-06-04 18:23:57 +08:00
3eb2242053
- Remove formatting and vetting targets from the Makefile - Upgrade urfave/cli dependency from v1 to v2 - Update CLI flag definitions to use urfave/cli/v2 API, including new struct field names and flag aliasing - Add indirect dependency on github.com/xrash/smetrics Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
19 lines
496 B
Modula-2
19 lines
496 B
Modula-2
module github.com/appleboy/drone-jenkins
|
|
|
|
go 1.22
|
|
|
|
require (
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/stretchr/testify v1.10.0
|
|
github.com/urfave/cli/v2 v2.27.5
|
|
)
|
|
|
|
require (
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
|
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|