Pages

Showing posts with label build. Show all posts
Showing posts with label build. Show all posts

Saturday, 4 December 2021

Gradle

Gradle commands

you could specify a single test with: 

gradle clean test --tests "org.gradle.MyFirstTest.testA"

Or all tests in a class: 
gradle clean test --tests "org.gradle.MyFirstTest" 

Or all tests in a package: 

gradle clean test --tests "org.gradle.*"

Golang dep

sample commands


install : #curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
#dep init
#dep ensure -add github.com/foo/bar github.com/baz/quux
#dep status
#dep ensure
#dep ensure -update github.com/foo/bar
#dep check

Thursday, 1 August 2019

Conan

Conan : C++ package manager

The open source, decentralized and multi-platform package manager to create and share all your native binaries.