最近在我的eclipse android maven項目中出現了這個錯誤,我不知道爲什麼。
你可以請看看我的POM和screenShot,並告訴我哪裏錯了請。在這裏感謝生命週期配置錯誤未涉及的插件執行
是我的POM
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.blueMonkeyTech.joggerMotivator</groupId>
<artifactId>joggerMotivator</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>apk</packaging>
<name>joggerMotivator</name>
<dependencies>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<version>2.3.3</version>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
可能與http://stackoverflow.com/questions/6352208/how-to-solve-plugin-execution-not-covered-生命週期配置爲春天 – Raghuram
@ Raghuram 它沒有幫助:( 我一直堅持這個年齡:( 有其他人有這個問題嗎?有誰知道如何解決它?在這裏變得絕望 – dewijones92
請同時看到(和upvote)這個答案:http://stackoverflow.com/questions/7028881/how-to-disable-m2e-build-in-eclipse-indigo –