18

我已经更新到最新版本的 ADT 插件,我遇到了这个问题,也解决了更新 m2e-android eclipse 插件的问题。现在,我可以通过控制台编译我的项目,但不能使用 Eclipse。pom.xml这是eclipse中文件抛出的异常:

dependency=[com.actionbarsherlock:library:apklib:4.1.0:compile] not found in workspace

在以前版本的 ADT/m2e-android 中,我能够毫无问题地构建控制台和 eclipse。

有谁知道如何解决这个问题?也许我的 pom.xml 错了?

谢谢你的时间。


目前使用:

  • Eclipse classic 3.7.2(使用 Juno 问题仍然存在)
  • ADT 20.0.3
  • m2e-安卓 0.42
  • android-maven-插件 3.3.0
  • 行家3.0.4
  • m2e 1.1.0(作为依赖项包含在 m2e-android 0.42 中)

pom.xml:

<?xml version="1.0" encoding="UTF-8"?>
<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>
    <groupId>com.jelies</groupId>
    <artifactId>my-project</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>apk</packaging>

    <dependencies>
        <dependency>
            <groupId>android</groupId>
            <artifactId>android</artifactId>
            <version>4.1_r2</version>
            <scope>provided</scope>
        </dependency>

        <!-- some unrelated dependencies -->

        <dependency>
            <groupId>com.actionbarsherlock</groupId>
            <artifactId>library</artifactId>
            <version>4.1.0</version>
            <type>apklib</type>
        </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.4</version>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>com.jayway.maven.plugins.android.generation2</groupId>
                <artifactId>android-maven-plugin</artifactId>
                <version>3.3.0</version>
                <configuration>
                    <sdk>
                        <platform>16</platform>
                    </sdk>
                    <emulator>
                        <avd>avd-4.1</avd>
                    </emulator>
                    <deleteConflictingFiles>true</deleteConflictingFiles>
                    <undeployBeforeDeploy>true</undeployBeforeDeploy>
                </configuration>
                <extensions>true</extensions>
            </plugin>
        </plugins>
    </build>

    <profiles>
        <profile>
            <id>eclipse</id>
            <activation>
                <!-- This profile is only activated when m2e.version is present (only 
                    in eclipse) -->
                <property>
                    <name>m2e.version</name>
                </property>
            </activation>
            <dependencies>
                <dependency>
                    <groupId>com.google.android</groupId>
                    <artifactId>support-v4</artifactId>
                    <version>r7</version>
                    <scope>provided</scope>
                </dependency>
            </dependencies>
        </profile>
    </profiles>
</project>

编辑:

答案是对的。在我的工作区中 mavenized ABS 库项目,错误消失了!但是,出现了另一个问题:我的项目中添加了ABS传递依赖项,导致eclipse无法启动应用程序。这是一个已知问题,您可以在此处关注。

4

5 回答 5

10

从 Android 0.4.2 开始,您现在需要在 Eclipse 工作区中对 Android 库项目进行 mavenise,以便 m2e-android 成功检测到它们。ActionBarSherlock 的 POM 可以在这里找到:

https://github.com/JakeWharton/ActionBarSherlock/blob/master/library/pom.xml#

注意: m2e-android 是测试版软件,因此可能会影响功能的更改可能会在版本之间发生。

于 2012-08-21T07:28:29.710 回答
2

对于那些不知道“MAVENIZED”意味着什么的人来说,它将一个简单的项目转换为一个 Maven 项目。

在 Eclipse 中,右键单击您的项目,配置 -> 转换为 Maven 项目

于 2013-10-25T20:31:24.213 回答
1

将此作为依赖项添加到您的父 pom.xml 文件中:

<dependency>
  <groupId>com.actionbarsherlock</groupId>
  <artifactId>actionbarsherlock</artifactId>
  <type>apklib</type>
  <version>4.2.0</version>
</dependency>

并将以下几行添加到您的项目 pom.xml:

<dependency>
    <groupId>com.actionbarsherlock</groupId>
    <artifactId>actionbarsherlock</artifactId>
    <version>4.2.0</version>
</dependency>
于 2013-02-13T13:02:02.653 回答
1

仅当通过配置文件使用 Eclipse 时,您才能将 actionbarsherlock 依赖项包含为 jar 文件

<profile>
  <id>m2e</id>
  <activation>
    <property><name>m2e.version</name></property>
   </activation>
   <dependencies>
    <dependency>
      <groupId>com.actionbarsherlock</groupId>
      <artifactId>actionbarsherlock</artifactId>
      <version>${abs.version}</version>
      <type>jar</type>
    </dependency>
  </dependencies>
</profile> 

并且不需要在eclipse中包含整个actionbarsherlock作为项目

于 2012-11-30T21:16:30.863 回答
1

我已经写了关于 mvn + eclipse + action bar sherlock 集成的详细教程http://v.zasadnyy.com/blog/abs-maven-eclipse-integration/

希望它会有所帮助。

于 2012-12-14T09:06:09.413 回答