jamdm
is a java library to grab data from the amdm.ru site - a storage of
guitar chords.
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.
mvn clean install
Perform release from scm
Commit changes and then execute:
mvn release:clean release:prepare -P release
mvn release:perform -P release