1

I have add resolver to ivysettings.xml

  <ibiblio name="google-api-services" root="http://mavenrepo.google-api-java-client.googlecode.com/hg" m2compatible="true" />

But get a error

 module not found: com.google.apis#google-api-services-drive;v2-rev13-1.8.0-beta
Ali Afshar
  • 40,967
  • 12
  • 95
  • 109
atu0830
  • 405
  • 7
  • 15

1 Answers1

0

It resolves fine for me..... Perhaps there is a problem with your ivysettings file?

The following example configures the google api services repo and Maven Central.

<ivysettings>
    <settings defaultResolver="repos" />
    <resolvers>
        <chain name="repos">
            <ibiblio name="central" m2compatible="true"/>   
            <ibiblio name="google-api-services" m2compatible="true" root="http://mavenrepo.google-api-java-client.googlecode.com/hg"/>
        </chain>
    </resolvers>
</ivysettings>
Mark O'Connor
  • 76,015
  • 10
  • 139
  • 185