11

操作系统: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 运行:'-/ It javaocr svn link

4

5 回答 5

7

我有同样的问题。这就是我解决它的方法。在 pom.xml 文件中,更改

<artifactId>maven-android-plugin</artifactId>
<version>2.8.3</version>

为了

<artifactId>android-maven-plugin</artifactId>
<version>3.4.1</version>

这至少对我来说解决了:)

于 2012-12-01T18:27:00.250 回答
3

首先,您使用的是旧版本的 android-maven 插件。您应该升级到最新的 3.1.1:

http://code.google.com/p/maven-android-plugin/

其次,请参阅第 3 节正确安装 m2e 的 m2e-android 插件的说明:

http://rgladwell.github.com/m2e-android/

您可以通过打开 POM 并单击“生命周期配置未涵盖的插件执行”错误来安装 m2e-android。这将为您提供发现新 m2e 连接器的选项。

选择此项,系统会自动提示您下载并安装 Android 连接器。

于 2012-04-19T16:12:52.777 回答
1

我将 MacOSX 与 Eclipse 4.3 (Krepler) 一起使用。我最初尝试的是使用 Brew 通过终端安装 Maven。它正确安装了 Maven 3.0.4。但是,当我尝试导入任何现成的 Maven 项目(文件 > 导入 > Maven)时,它会显示以下两个错误:

未找到处理执行 default-testResources 的市场条目

我所做的是转到 Help > Eclipse Marketplace 并在搜索栏中输入“Maven”并为 Eclipse 安装第一个默认 Maven 客户端。从这一点开始,一切都对我有用。

希望对你也有帮助。

于 2014-07-19T11:33:51.997 回答
1

当您尝试使用 3.8.2 的 android-maven-plugin 时,这个问题再次出现在 Keppler 中,可能是因为您需要一个 AAR 库。该解决方案记录在这里https://stackoverflow.com/a/7030657/176859并引导您到这里:http ://wiki.eclipse.org/M2E_plugin_execution_not_covered#ignore_plugin_goal 。或者您可以在“问题”窗口中单击错误,上下文单击以获取快速修复,然后选择一个永久禁用此错误;quickfix 将为 pluginManagement 中的 consumer-aar 生成一个忽略元素,Eclipse 和 Maven 都会很高兴。

于 2014-02-06T19:20:47.500 回答
0

我有一个类似的问题。在 Window / Preferences / Maven / Installations 中使用嵌入式 Maven。

于 2018-07-25T12:04:05.277 回答