I'm Using m2e configurator for Eclipse with Maven and Android. I'have two apk projects using Google Maps API. Pom dependencies for Android Api and Google Maps, are the same at both projects. Both poms are similar (the one which is not working doesn't have regular Maven dependencies) .Here is an excerpt from pom.xml:
<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<version>2.2.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.android.maps</groupId>
<artifactId>maps</artifactId>
<version>8_r2</version>
<scope>provided</scope>
</dependency>
The pom section for android-maven-plugin it's the same for both projects:
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<configuration>
<sdk>
<path>${env.ANDROID_HOME}</path>
<platform>8</platform>
</sdk>
</configuration>
<extensions>true</extensions>
</plugin>
This is what I get, when both projects are configured in Eclipse using m2e-android configurator. Second project doesn't include maps.jar (Google APIS).

I'm not sure which to do or to try. Any help will be appreciated.
Update: There is an issue opened at GitHub you can watch :-)