操作系统:ubuntu 11.10
Eclipse:面向Web开发人员的Java EE IDE。版本:Indigo Service Release 2 Build id:20120216-1857 Java:jdk1.7.0_03 SDK adb:Android Debug Bridge版本1.0.29
尝试使用m2e android(2.8.4)在eclipse中构建javaocr。 它导致项目在pom.xml中构建错误:
Description Resource Path Location Type
Plugin execution not covered by lifecycle configuration: com.jayway.maven.plugins.android.generation2:maven-android-plugin:2.8.4:generate-sources (execution: default-generate-sources, phase: generate-sources) pom.xml /javaocr-sampler line 20 Maven Project Build Lifecycle Mapping Problem
Plugin execution not covered by lifecycle configuration: com.jayway.maven.plugins.android.generation2:maven-android-plugin:2.8.4:unpack (execution: default-unpack, phase: process-classes) pom.xml /javaocr-sampler line 20 Maven Project Build Lifecycle Mapping Problem
Plugin execution not covered by lifecycle configuration: org.apache.maven.plugins:maven-resources-plugin:2.5:resources (execution: default-resources, phase: process-resources) pom.xml /javaocr-sampler line 11 Maven Project Build Lifecycle Mapping Problem
Plugin execution not covered by lifecycle configuration: org.apache.maven.plugins:maven-resources-plugin:2.5:testResources (execution: default-testResources, phase: process-test-resources) pom.xml /javaocr-sampler line 11 Maven Project Build Lifecycle Mapping Problem
的pom.xml:
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>net.sourceforge.javaocr.demos</groupId>
<artifactId>javaocr-demos-parent</artifactId>
<version>1.102-SNAPSHOT</version>
</parent>
<groupId>net.sourceforge.javaocr.demos</groupId>
<artifactId>javaocr-sampler</artifactId>
<packaging>apk</packaging>
<name>Android sampler</name>
<description>
Demo appliocation to gather samples for further training
of matchers
</description>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>maven-android-plugin</artifactId>
<version>2.8.4</version>
<configuration>
<sdk>
<platform>7</platform>
</sdk>
<emulator>
<avd>16</avd>
</emulator>
<deleteConflictingFiles>true</deleteConflictingFiles>
<undeployBeforeDeploy>true</undeployBeforeDeploy>
</configuration>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>net.sourceforge.javaocr</groupId>
<artifactId>javaocr-core</artifactId>
<version>${pom.version}</version>
</dependency>
<dependency>
<groupId>net.sourceforge.javaocr.demos</groupId>
<artifactId>javaocr-android-camera-utils</artifactId>
<version>${pom.version}</version>
</dependency>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<version>2.1_r1</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
我对maven来说是全新的,但我已经四处寻找解决方案了,但我空洞了。 这是一个在IDEA(AFAIK)开发的项目,它应该在那里完美地工作,我只是不能让IDEA既不运行:' - / 它是javaocr svn link。
答案 0 :(得分:7)
我遇到了同样的问题。这就是我解决它的方式。 在pom.xml文件中,更改
<artifactId>maven-android-plugin</artifactId>
<version>2.8.3</version>
代表
<artifactId>android-maven-plugin</artifactId>
<version>3.4.1</version>
至少对我来说,这解决了它:)
答案 1 :(得分:3)
首先,您使用的是旧版Android-maven插件。您应升级到最新的3.1.1:
http://code.google.com/p/maven-android-plugin/
其次,请参阅m2e正确安装m2e-android插件的说明的第3部分:
http://rgladwell.github.com/m2e-android/
您可以通过打开POM并单击“生命周期配置未涵盖的插件执行”错误来安装m2e-android。这将为您提供发现新的m2e连接器的选项。
选择此项,系统会自动提示您下载并安装Android Connector。
答案 2 :(得分:1)
当你尝试使用android-maven-plugin的3.8.2时,这个问题再次与Keppler重新讨论,可能是因为你需要一个AAR libray。该解决方案记录在https://stackoverflow.com/a/7030657/176859,并在此处引导您:http://wiki.eclipse.org/M2E_plugin_execution_not_covered#ignore_plugin_goal。或者,您只需单击“问题”窗口中的错误,单击“上下文单击”以获取“快速修复”,然后选择永久禁用此错误的错误; quickfix将为pluginManagement中的consume-aar生成一个ignore元素,Eclipse和Maven都会很高兴。
答案 3 :(得分:1)
我在Eclipse 4.3(Krepler)中使用MacOSX。我最初尝试的是使用Brew通过终端安装Maven。它安装正确Maven 3.0.4。但是,当我尝试导入任何现成的maven项目(File&gt; Import&gt; Maven)时,它会显示以下两个错误:
找不到处理Execution default-testResources
的市场条目
我做的是去帮助&gt; Eclipse Marketplace并在搜索栏中键入“Maven”并为Eclipse安装第一个默认的Maven客户端。从这一刻起,一切都对我有用。
希望它对你也有帮助。
答案 4 :(得分:0)
我有一个类似的问题。在“窗口” /“首选项” /“ Maven” /“安装”中使用嵌入式Maven。