mvn-golang
maven plugin to automate GoSDK load and build of projects
File Explorer
- maven.yml
- doc_common.mmd
- archetype_demo.gif
- doc_common.png
- git_banner.png
- git_banner.svg
- mvngolang.png
- mvngolang.svg
- mandel.frag
- mandel.vert
- azul3d_mandel.go
- go.mod
- go.sum
- mandelbrot.go
- pom.xml
- acsii.theme
- turbovision.theme
- main.go
- pom.xml
- go.mod
- go.sum
- hello.go
- pom.xml
- la_espero.txt
- main.go
- pom.xml
- gocui.go
- pom.xml
- math.go
- math_test.go
- main.go
- pom.xml
- time.go
- pom.xml
- main.go
- dependencies.txt
- pom.xml
- main.go
- pom.xml
- BackendService.java
- FrontendMain.java
- Messages.java
- Messages_fr.properties
- gwtfrontend.gwt.xml
- logo.png
- web.xml
- favicon.ico
- index.html
- main.css
- gotestJUnit.gwt.xml
- pom.xml
- pom.xml
- main.go
- pom.xml
- go.mod
- go.sum
- main.go
- pom.xml
- src1some.go
- src2some.go
- main.go
- pom.xml
- gologrus.go
- pom.xml
- go.mod
- go.sum
- main.go
- pom.xml
- go.mod
- go.sum
- Proxy.go
- pom.xml
- go.mod
- go.sum
- Terminal.go
- pom.xml
- pom.xml
- main.go
- pom.xml
- go.mod
- SomeUtils.go
- pom.xml
- go.mod
- SomeUtils.go
- pom.xml
- go.mod
- MetaUtils.go
- pom.xml
- pom.xml
- main.go
- main_test.go
- pom.xml
- main.go
- main_test.go
- pom.xml
- deploy.xml
- pom.xml
- common.go
- common_test.go
- pom.xml
- pom.xml
- pom.xml
- sheet.png
- eggplant-fish.png
- go.mod
- go.sum
- performance.go
- pom.xml
- arithplugin.go
- arithplugin_test.go
- pom.xml
- image.png
- inlined.go
- main.go
- text.txt
- pom.xml
- pom.xml
- person.proto
- main.go
- go-dependencies.lst
- pom.xml
- main.go
- pom.xml
- go.mod
- go.sum
- sparklines.go
- pom.xml
- Some.go
- Some_test.go
- main.go
- pom.xml
- main.go
- pom.xml
- main.go
- pom.xml
- main.go
- pom.xml
- main.go
- pom.xml
- main.go
- pom.xml
- pom.xml
- pom.xml
- bundle.xml
- distribution.xml
- go.mod
- hello.go
- hello_test.go
- packages.txt
- pom.xml
- archetype-metadata.xml
- pom.xml
- bundle.xml
- distribution.xml
- main.go
- main_test.go
- pom.xml
- main.go
- main_test.go
- pom.xml
- deploy.xml
- pom.xml
- common.go
- common_test.go
- pom.xml
- pom.xml
- archetype-metadata.xml
- pom.xml
- bundle.xml
- distribution.xml
- components.xml
- AbstractRepo.java
- CvsBZR.java
- CvsGIT.java
- CvsHG.java
- CvsNone.java
- CvsSVN.java
- CVSType.java
- GoMod.java
- IOUtils.java
- MavenUtils.java
- MvnGolangArtifactHandler.java
- PackageList.java
- ProxySettings.java
- StringComparatorABC.java
- SysUtils.java
- Tuple.java
- UnpackUtils.java
- WildCardMatcher.java
- XGoogHashHeader.java
- AbstractGoDependencyAwareMojo.java
- AbstractGolangMojo.java
- AbstractGoPackageAndDependencyAwareMojo.java
- AbstractGoPackageAwareMojo.java
- AbstractModuleAware.java
- CustomScript.java
- GolangBuildMojo.java
- GolangCleanMojo.java
- GolangCustomMojo.java
- GolangFixMojo.java
- GolangFmtMojo.java
- GolangGenerateMojo.java
- GolangGetMojo.java
- GolangInstallMojo.java
- GolangJfrogCliMojo.java
- GolangListMojo.java
- GolangModMojo.java
- GolangMvnInstallMojo.java
- GolangRunMojo.java
- GolangTestMojo.java
- GolangToolMojo.java
- GolangVetMojo.java
- GoModTest.java
- MavenUtilsTest.java
- PackageListTest.java
- StringComparatorABCTest.java
- SysUtilsTest.java
- GolangBuildMojoTest.java
- GolangModMojoCfgTest.java
- mojoBuild.xml
- mojoClean.xml
- mojoCustom.xml
- mojoFix.xml
- mojoFmt.xml
- mojoGenerate.xml
- mojoGet.xml
- mojoInstall.xml
- mojoJFrogCli.xml
- mojoMod.xml
- mojoMvnInstall.xml
- mojoRun.xml
- mojoTest.xml
- mojoTool.xml
- mojoVet.xml
- pom.xml
- .gitignore
- CHANGELOG.md
- LICENSE
- pom.xml
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
go test
View Details ▼
go test
Test Go packages (files have to end with `_test.go`).
Note: `./...` is a Go package pattern understood by Go tooling. It matches the current package and all packages recursively under the current directory.
go test
Test the package found in the current directory:
go test -v
[v]erbosely test the package in the current directory:
go test -v ./...
Test the packages in the current directory and all subdirectories:
mvn
View Details ▼
mvn
Apache Maven: build and manage Java-based projects.
mvn compile
Compile a project:
mvn package
Compile and package the compiled code in its distributable format, such as a `jar`:
mvn package {{[-D|--define]}} skipTests
Compile and package, skipping unit tests:
