home Forums # Technical Support Can not add maven dependency

Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #2114
    Unknown
    Member

    Hello,

    I added the repository into my maven project

            <repository>
                <id>sonatype-staging</id>
                <url>https://oss.sonatype.org/content/repositories/staging/</url>
            </repository>
    

    but the dependency

             <dependency>
                <groupId>com.fuzzylite</groupId>
                <artifactId>jfuzzylite</artifactId>
                <version>5.0.1</version>
            </dependency>
    

    cannot be found. The 5.0 version can be found in the maven central repository.

    Any suggestions?

    #2116

    Hi,

    thank you for your post.

    The 5.0.1 version is not available in maven. I have tried several times to upload it, but to no avail. Please:

    (1) Download https://github.com/fuzzylite/jfuzzylite/releases/download/5.0.1/jfuzzylite-5.0.1.jar

    (2) Install it manually:

    mvn install:install-file -Dfile=/path/to/fuzzylite-5.0.1.jar -DgroupId=com.fuzzylite 
    -DartifactId=jfuzzylite -Dversion=5.0.1 -Dpackaging=jar

    Let me know if this helps.

    Cheers.

    #2605

    Hi,

    just keeping up with old posts. The maven version is finally available.

    <dependency>
                <groupId>com.fuzzylite</groupId>
                <artifactId>jfuzzylite</artifactId>
                <version>6.0.1</version>
    </dependency>

    Cheers.

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.