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