rburgst/okhttp-digest

Maven can't find

sammefford opened this issue · 1 comments

I tried the following in my maven pom.xml:

	<dependency>
		<groupId>com.burgstaller</groupId>
		<artifactId>okhttp-digest</artifactId>
		<version>1.12</version>
	</dependency>

But I get "Could not find artifact com.burgstaller:okhttp-digest:jar:1.12 in central (https://repo.maven.apache.org/maven2)". When I search in mvnrepository.com I can't find anything under com.burgstaller. Is this deployed in maven central? If not, does gradle have another way to get it?

I was able to get maven to find this dependency by adding jcenter as a repository in my pom.xml:

<repositories>
	<repository>
		<id>jcenter</id>
		<url>http://jcenter.bintray.com </url>
	</repository>
</repositories>