-1

I found this link for Zoho Java library:

https://github.com/zoho/projects-java-wrappers

<dependency>
  <groupId>com.zoho.projects</groupId>
  <artifactId>projects-java</artifactId>
  <version>1.0</version>
</dependency>

Where I can find public repository where this jar file is hosted?

Peter Penzov
  • 1,126
  • 134
  • 430
  • 808

1 Answers1

1

It seems there is no public repository for the project. Here Hosting a Maven repository on github you can read more about github as maven repository.

I chosen a JitPack approach and I checked that solution described on https://jitpack.io/#zoho/projects-java-wrappers/ac2b31602f works.

JitPack is kind of self release maven repository

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

and

<dependency>
    <groupId>com.github.zoho</groupId>
    <artifactId>projects-java-wrappers</artifactId>
    <version>ac2b31602f</version>
</dependency>
Community
  • 1
  • 1
michaldo
  • 4,195
  • 1
  • 39
  • 65