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..
https://vickumar1981.github.io/stringdistance/api/com/github/vickumar1981/stringdistance/index.html
Other
78 stars 15 forks source link

Push deployed artifact to sonatype on tagged release #2

Open vickumar1981 opened 6 years ago

vickumar1981 commented 6 years ago

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.