Skip to content Skip to sidebar Skip to footer

Android-maven-plugin 3.8.2 Not Covered By Lifecycle

On Eclipse 4.3.2 my POM was using com.jayway.maven.plugins.android.generation2:android-maven-plugin:3.5.1 with no problems. I tried to upgrade it to 3.8.2 (the latest), and I got t

Solution 1:

I note in the maven-android-plugin changelog that version 3.8.2 requires Maven 3.1.1+. I'm using Maven 3.0.5 (which is required by another client). I also note that the changelog mentions that the upcoming version 3.9.0 will "[change] from direct Aether usage to Dependency Tree usage allowing compatibility with Maven 3.0.x and therefore with IDE's and other tools that have old Maven version like this embedded".

So I switched to maven-android-plugin 3.7.0, the last version that indicated Maven 3.0.x support, and the connector error went away.

Update: As of 2014-06-01, version 3.9.0-rc.2 of the plugin works with Maven 3.0.5, so I assume the final release will as well.

Update 2014-06-08: Today I updated to Eclipse 4.4RC4, and I'm getting the "Plugin execution not covered by lifecycle configuration" error all over again.

Post a Comment for "Android-maven-plugin 3.8.2 Not Covered By Lifecycle"