com.github.demansh:jamdm

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

License

License

GroupId

GroupId

com.github.demansh
ArtifactId

ArtifactId

jamdm
Last Version

Last Version

0.0.14
Release Date

Release Date

Type

Type

jar
Description

Description

com.github.demansh:jamdm
This is a java library to grab data from the amdm.ru site - a storage of guitar chords
Project URL

Project URL

https://github.com/demansh/jamdm
Source Code Management

Source Code Management

https://github.com/demansh/jamdm

Download jamdm

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.demansh/jamdm/ -->
<dependency>
    <groupId>com.github.demansh</groupId>
    <artifactId>jamdm</artifactId>
    <version>0.0.14</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.demansh/jamdm/
implementation 'com.github.demansh:jamdm:0.0.14'
// https://jarcasting.com/artifacts/com.github.demansh/jamdm/
implementation ("com.github.demansh:jamdm:0.0.14")
'com.github.demansh:jamdm:jar:0.0.14'
<dependency org="com.github.demansh" name="jamdm" rev="0.0.14">
  <artifact name="jamdm" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.demansh', module='jamdm', version='0.0.14')
)
libraryDependencies += "com.github.demansh" % "jamdm" % "0.0.14"
[com.github.demansh/jamdm "0.0.14"]

Dependencies

compile (1)

Group / Artifact Type Version
org.jsoup : jsoup jar 1.10.2

test (1)

Group / Artifact Type Version
junit : junit jar 4.12

Project Modules

There are no modules declared in this project.

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

Versions

Version
0.0.14
0.0.13
0.0.11