java - "The following artifacts could not be resolved" : Maven / Android / Eclipse -
i trying run android
application in eclipse
using maven
. dependencies
unfortunately stopping run (could not found or resolved). have checked have dependencies in repository. suggestion welcome. thank time , consideration.
pom.xml :
<dependency> <groupid>android</groupid> <artifactid>android</artifactid> <version>4.4.2_r2</version> <scope>provided</scope> </dependency> <dependency> <groupid>android.support</groupid> <artifactid>compatibility-v4</artifactid> <version>19.0.1</version> </dependency>
console's error message:
the following artifacts not resolved: android:android:jar:4.4.2_r2, android.support:compatibility-v4:jar:19.0.1: failure find android:android:jar:4.4.2_r2 in http://repo.maven.apache.org/maven2 cached in local repository, resolution not reattempted until update interval of central has elapsed or updates forced
the android:android:jar:4.4.2_r2 not exist in repository. check if exists.
Comments
Post a Comment