英文:
Gradle for Golang (Use/build some .go within Java project)
问题
Gradle是否支持Go语言?如何开始使用?
我正在开始我的研究,但目前我只在https://plugins.gradle.org/search?term=go 上找到一个插件。
英文:
Is Go supported by Gradle? How to start?
I am starting my research, but so far I only find 1 plugin on https://plugins.gradle.org/search?term=go
答案1
得分: 3
通常情况下,不需要使用Gradle或Maven,因为:
go build
命令已经足够。- 依赖项由Go自身管理。
你会看到一些项目使用Makefile来链接go build
、go test
和go vet
命令。
英文:
Generally, gradle or maven would not be needed, because:
go build
is enough.- the dependencies are managed by go itself.
You see some project using Makefile (to link go build
and go test
and go vet
).
答案2
得分: 2
尝试使用Gogradle(https://github.com/blindpirate/gogradle),这是一个功能齐全的Golang插件。
我们需要它的原因是,Golang缺乏自动构建机制、包版本管理和其他许多由Gogradle支持的功能。
英文:
Try Gogradle https://github.com/blindpirate/gogradle, a full featured plugin for Golang.
The reason why we need it is that Golang lacks of automatic build mechanism, package versioning and many other stuff which is supported by Gogradle.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论