Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 648 Bytes

README.md

File metadata and controls

36 lines (24 loc) · 648 Bytes

Getting Started

About

jamdm is a java library to grab data from the amdm.ru site - a storage of guitar chords.

How to use

Say you'd like to find chord for the Beatles "Yellow sub-marin":

Search search=new AmDmSearch("Yellow submarine");
Collection<Song> songs=search.result();
System.out.println(songs.iterator().next().text());

The output will be a formatted html page with the text and chords.

For developer

Build

mvn clean install

Release

Perform release from scm

Commit changes and then execute:

mvn release:clean release:prepare -P release
mvn release:perform -P release