I am adding my own apklib to my android application, i get the following :
Failed to execute goal on project tablet: Could not resolve dependencies for project xxxxxxxxxx.tablet:tablet:apk:1.0: Failed to collect dependencies for [cxxxxxxx:shared:apklib:1.0-SNAPSHOT (compile), android:android:jar:4.2_r1 (provided), com.google.android.gcm:gcm-client:jar:3 (compile), com.google.android.maps:maps:jar:17_r1 (provided), com.actionbarsherlock:actionbarsherlock:apklib:4.2.0 (compile), com.viewpagerindicator:library:apklib:2.4.1 (compile), com.google.zxing.client.android:zxing:apklib:2.1 (compile), com.github.chrisbanes.pulltorefresh:library:apklib:2.1.2-SNAPSHOT (compile), com.google.zxing:zxing-core:jar:2.1 (compile), com.google.guava:guava:jar:13.0.1 (compile), com.google.code.gson:gson:jar:2.2.2 (compile), com.squareup:otto:jar:1.2.1 (compile), com.google.code.findbugs:jsr305:jar:1.3.9 (compile), javax.annotation:jsr250-api:jar:1.0 (compile), com.loopj.android.airbrake:android:jar:1.3.0 (compile), com.actionbarsherlock:plugin-maps:jar:4.2.0 (compile), org.apache.httpcomponents:httpmime:jar:4.0 (compile), org.apache.james:apache-mime4j:jar:0.6 (compile), io.card.payment:card-io:jar:lib (compile), com.flurry.android:FlurryAgent:jar:lib (compile), com.facebook.android:sdk:apklib:2.0 (compile), com.slidingmenu.lib:library:apklib:1.0 (compile)
: Failed to read artifact descriptor for xxx:shared:apklib:1.0-SNAPSHOT: Failure to find xxx:yyy.POM:pom:1.0-SNAPSHOT in file:///Users/xyz/Code/xxxxxxx.MavenRepo was cached in the local repository, resolution will not be reattempted until the update interval of com.xxxx has elapsed or updates are forced -> [Help 1]
Note :I know the issue is because of shared lib but maven install worked in shared . if i remove the dependency on shared the project compiles fine . I have no clue what is happening .
Adding pom.xml of my app :
<?xml version="1.0" encoding="UTF-8"?>
http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<version>1.0-SNAPSHOT</version>
<groupId>xxxxxx</groupId>
<artifactId>xxx.POM</artifactId>
<relativePath>../pom.xml</relativePath>
</parent>
<name>Axxx.app</name>
<version>1.0</version>
<groupId>xxxxx.app</groupId>
<packaging>apk</packaging>
<artifactId>tablet</artifactId>
<dependencies>
**<dependency>
<type>apklib</type>
<version>1.0-SNAPSHOT</version>
<groupId>xxxxxxxxx</groupId>
<artifactId>shared</artifactId>
</dependency>**
<dependency>
<groupId>android</groupId>
<artifactId>android</artifactId>
</dependency>
<dependency>
<groupId>com.google.android.gcm</groupId>
<artifactId>gcm-client</artifactId>
</dependency>
<dependency>
<groupId>com.google.android.maps</groupId>
<artifactId>maps</artifactId>
</dependency>
<dependency>
<type>apklib</type>
<groupId>com.actionbarsherlock</groupId>
<artifactId>actionbarsherlock</artifactId>
</dependency>
<dependency>
<type>apklib</type>
<groupId>com.viewpagerindicator</groupId>
<artifactId>library</artifactId>
</dependency>
<dependency>
<type>apklib</type>
<version>2.1</version>
<groupId>com.google.zxing.client.android</groupId>
<artifactId>zxing</artifactId>
</dependency>
<dependency>
<type>apklib</type>
<version>2.1.2-SNAPSHOT</version>
<groupId>com.github.chrisbanes.pulltorefresh</groupId>
<artifactId>library</artifactId>
</dependency>
<dependency>
<version>2.1</version>
<groupId>com.google.zxing</groupId>
<artifactId>zxing-core</artifactId>
</dependency>
<dependency>
<version>13.0.1</version>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<version>2.2.2</version>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</dependency>
<dependency>
<version>1.2.1</version>
<groupId>com.squareup</groupId>
<artifactId>otto</artifactId>
</dependency>
<dependency>
<version>1.3.9</version>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
</dependency>
<dependency>
<version>1.0</version>
<groupId>javax.annotation</groupId>
<artifactId>jsr250-api</artifactId>
</dependency>
<dependency>
<version>1.3.0</version>
<groupId>com.loopj.android.airbrake</groupId>
<artifactId>android</artifactId>
</dependency>
<dependency>
<version>4.2.0</version>
<groupId>com.actionbarsherlock</groupId>
<artifactId>plugin-maps</artifactId>
</dependency>
<dependency>
<version>4.0</version>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
</dependency>
<dependency>
<version>0.6</version>
<groupId>org.apache.james</groupId>
<artifactId>apache-mime4j</artifactId>
</dependency>
<dependency>
<version>lib</version>
<groupId>io.card.payment</groupId>
<artifactId>card-io</artifactId>
</dependency>
<dependency>
<version>lib</version>
<groupId>com.flurry.android</groupId>
<artifactId>FlurryAgent</artifactId>
</dependency>
<dependency>
<type>apklib</type>
<version>2.0</version>
<groupId>com.facebook.android</groupId>
<artifactId>sdk</artifactId>
</dependency>
<dependency>
<type>apklib</type>
<version>1.0</version>
<groupId>com.slidingmenu.lib</groupId>
<artifactId>library</artifactId>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>com.pyx4me</groupId>
<artifactId>proguard-maven-plugin</artifactId>
<executions>
<execution>
<id>process-classes-with-proguard</id>
<phase>process-classes</phase>
<goals>
<goal>proguard</goal>
</goals>
<configuration>
<skip>true</skip>
<injar>android-classes</injar>
<maxMemory>256m</maxMemory>
<proguardVersion>4.4</proguardVersion>
<libs>
<lib>${rt.jar.path}</lib>
<lib>${jsse.jar.path}</lib>
</libs>
<obfuscate>true</obfuscate>
<addMavenDescriptor>false</addMavenDescriptor>
<proguardInclude>${project.basedir}/proguard.conf</proguardInclude>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<scope>runtime</scope>
<version>4.4</version>
<groupId>net.sf.proguard</groupId>
<artifactId>proguard</artifactId>
</dependency>
</dependencies>
</plugin>
<plugin>
<artifactId>maven-jarsigner-plugin</artifactId>
<executions>
<execution>
<id>sign-application-apk</id>
<phase>package</phase>
<goals>
<goal>sign</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<executions>
<execution>
<id>zipalign-application-apk</id>
<phase>package</phase>
<goals>
<goal>zipalign</goal>
</goals>
</execution>
</executions>
<configuration>
<sign>
<debug>${debug}</debug>
</sign>
<zipalign>
<verbose>true</verbose>
<inputApk>${project.build.directory}/${project.artifactId}-${project.version}.apk</inputApk>
<outputApk>${project.build.directory}/${project.artifactId}-${project.version}-signed-aligned.apk</outputApk>
</zipalign>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<configuration>
<artifacts>
<artifact>
<file>${project.build.directory}/proguard_map.txt</file>
<type>map</type>
<classifier>release</classifier>
</artifact>
</artifacts>
</configuration>
<executions>
<execution>
<id>attach-signed-aligned</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
Running mvn dependency:tree also reports the same issue so i have some problem with
apklib 1.0-SNAPSHOT xxxxxxxxx shared
Removing this dependency then mvn dependency:tree works fine . Any thoughts ?
Thanks!