cjstehno / ersatz

🤖 A simulated HTTP server for testing client code with configurable responses.
https://cjstehno.github.io/ersatz
Apache License 2.0
47 stars 5 forks source link

vanilla-core dependency missing #83

Closed ironcamel closed 6 years ago

ironcamel commented 6 years ago

I had a job that was working before and recently started failing with the following error:

Error grabbing Grapes -- [unresolved dependency: com.stehno.vanilla#vanilla-core;0.5.1: not found]

I checked the maven site: https://mvnrepository.com/artifact/com.stehno.ersatz/ersatz/1.6.0

I noticed that the vanilla-core link is dead. See the screenshot.
maven-ersatz-1 6 0

Any ideas?

cjstehno commented 6 years ago

I think I fell prey to a bintray publishing bug. I will try to publish it again and let you know.

cjstehno commented 6 years ago

You could probably just exclude the vanilla dependency unless you are explicitly using it. I need to update the dependency since yes, 0.5.1 is dead (but probably still exists in my local repo)

ironcamel commented 6 years ago

I was using version 1.5.0 by including this line at the top of my test file:

@Grab('com.stehno.ersatz:ersatz:1.5.0')

I would be fine with switching to the latest, 1.6.0, but how do I exclude the vanilla dependency?

cjstehno commented 6 years ago

I am removing the vanilla dependency since it's a bit of a dead project... I will be releasing ersatz 1.6.1 shortly.

cjstehno commented 6 years ago

well, maven central is having issues right now, so as long as you are using bintray/jcenter you should be able to switch to eratz 1.6.1 and no longer have the dependency issue.

ironcamel commented 6 years ago

Thank you!