Skip to content
This repository has been archived by the owner on May 19, 2022. It is now read-only.

spilth/savant

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Codeship Codacy grade

Savant

Savant is a command-line tool that aims to make working with Maven easier on macOS. It can be used to quickly initialize Java & Kotlin Maven projects, search for dependencies and to add JavaDocs for your dependencies to Dash.

End-user documentation can be found at http://spilth.org/projects/savant/

Building from Source

If you want to build the tool from source, do the following:

$ git clone git@github.com:spilth/savant.git
$ cd savant
$ mvn package
$ alias savant="java -jar ./target/savant-1.6.0-SNAPSHOT.jar"
$ savant search hamcrest-core
<dependency>
    <groupId>org.hamcrest</groupId>
    <artifactId>hamcrest-core</artifactId>
    <version>1.3</version>
</dependency>
<dependency>
    <groupId>org.ops4j.pax.tipi</groupId>
    <artifactId>org.ops4j.pax.tipi.hamcrest.core</artifactId>
    <version>1.3.0.1</version>
</dependency>