vickumar1981 / stringdistance

A fuzzy matching string distance library for Scala and Java that includes Levenshtein distance, Jaro distance, Jaro-Winkler distance, Dice coefficient, N-Gram similarity, Cosine similarity, Jaccard similarity, Longest common subsequence, Hamming distance, and more..

Home Page:https://vickumar1981.github.io/stringdistance/api/com/github/vickumar1981/stringdistance/index.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Push deployed artifact to sonatype on tagged release

vickumar1981 opened this issue · comments

Should automate pushing to the sonatype repo - should be tied into the git tag.

i.e., if the current version of the software is 99.99.0, then:

git commit -a -m "v99.99.1"
git tag -a 99.99.1 -m "v99.99.1"
git push origin master
git push --tags origin

would trigger a new deploy artifact.

Artifacts are deployed using the sbt-sonatype plugin.