I'm trying to add "com.google.api-ads" % "adwords-axis" % "1.23.0"
as a dependency in build.sbt
file in a Play 2.2.1 project. When I do play eclipse
for generating the eclipse project file, I get the following error:
[error] (*:update) sbt.ResolveException: unresolved dependency: com.google.http-client#google-http-client-jackson2;RELEASE: not found
Later I found out that adwords-axis depends on ads-lib which has the following dependency (note RELEASE
version):
<dependency>
<groupId>com.google.http-client</groupId>
<artifactId>google-http-client-jackson2</artifactId>
<version>RELEASE</version>
</dependency>
I read that the version can be specified as RELEASE
in Maven in this answer.
Does SBT not allow specifying the version as RELEASE
? If so, is there a workaround to use adwords-axis
dependency?