xdrop / fuzzywuzzy

Java fuzzy string matching implementation of the well known Python's fuzzywuzzy algorithm. Fuzzy search for Java
GNU General Public License v2.0
822 stars 118 forks source link

v1.3.0 I can't find the .pom file #81

Closed AmiraDowidar closed 4 years ago

AmiraDowidar commented 4 years ago

Hello, I'm trying to use v 1.3.0 but I'm facing the following error

Could not find me.xdrop:fuzzywuzzy:1.3.0. Searched in the following locations:

Possible solution:

I can't find the .pom file in the following directories https://repo.jfrog.org/artifactory/libs-release-bintray/me/xdrop/fuzzywuzzy/1.3.0/ https://repo.maven.apache.org/maven2/me/xdrop/fuzzywuzzy/1.3.0/

am I missing something? I have the following repositories defined in my build.gradle

repositories {
  jcenter()
  mavenCentral()
}
burdoto commented 4 years ago

Could you please provide your complete dependency declaration from gradle?

AmiraDowidar commented 4 years ago

Here's my dependencies

dependencies {
    implementation "joda-time:joda-time:2.10.5"
    implementation 'com.google.code.gson:gson:2.8.6'
    implementation 'me.xdrop:fuzzywuzzy:1.3.0'
}
burdoto commented 4 years ago

the latest available version on maven central seems to be 1.2.0: https://search.maven.org/artifact/me.xdrop/fuzzywuzzy/1.2.0/jar

this is a mistake and i'm sure @xdrop will take care of this asap

meanwhile, you could try depending on a version that you published to your mavenLocal() repository from a clone, but this is just an idea :)

xdrop commented 4 years ago

Hmm, looks like it didn't sync to maven central fully. Taking a look

AmiraDowidar commented 4 years ago

I already did that :) I wanted to be sure that I'm not misconfiguring anything in my build.gradle file

Thank you so much.

xdrop commented 4 years ago

I've just triggered another sync. It will take a while to update but if it's not there by tomorrow I might have to either republish or push to a new version

AmiraDowidar commented 4 years ago

@burdoto @xdrop Thank you both so much. I will check again tomorrow.

xdrop commented 4 years ago

I couldn't get 1.3.0 to be refreshed (even after deleting and republishing), so I'm pushing 1.3.1 out. Will check again once its synced

xdrop commented 4 years ago

1.3.1 should be out now. @AmiraDowidar can you confirm whether it works?

AmiraDowidar commented 4 years ago

@xdrop Yes, I can confirm v 1.3.1 is working correctly. Thanks.