Eclipse无法在maven项目中解析akka引用

时间:2012-09-28 16:50:01

标签: java eclipse maven akka

我正在尝试远程部署pi计算的akka​​ tutrials。我正在使用eclipse juno的mvn项目。我已经能够为eclipse安装maven插件并成功运行第一个pi claculation。现在我正在尝试第二个pi教程,其中涉及演员的远程部署。但是,当我在eclipse IDE中打开教程包时,看起来某些akka文件尚未被系统解析。我已经在POM中定义了依赖项,但仍然是eclipse和maven抱怨。当我在eclipse中运行maven编译目标时,项目会被编译,但是当我尝试运行它时,它会给我错误。以下是示例代码段。

import akka.actor.UntypedActor; 
import akka.actor.ActorRef;
import akka.routing.CyclicIterator;
import akka.routing.InfiniteIterator;
import akka.routing.UntypedLoadBalancer;
eclipse complains that it cannot resolve the above importation

这是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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>


    <name>Akka.Remote.Cluster</name>
  <groupId>Akka-Remote_Cluster</groupId>
  <artifactId>Akka.Remote.Cluster</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>jar</packaging>
  <url>http://akka.io</url>

  <dependencies>
      <dependency>
            <groupId>com.typesafe.akka</groupId>
            <artifactId>akka-actor</artifactId>
            <version>2.0.3</version>
        </dependency> 
   <dependency>
  <groupId>com.typesafe.akka</groupId>
  <artifactId>akka-remote</artifactId>
  <version>2.0.3</version>
</dependency>          
</dependencies>

    <repositories>
        <repository>
            <id>typesafe</id>
            <name>Typesafe Repository</name>
            <url>http://repo.typesafe.com/typesafe/releases/</url>
        </repository>
    </repositories>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

这是eclipse的错误

Exception in thread "main" java.lang.Error: Unresolved compilation problem: 

    at Akka_Remote_Cluster.Akka.Remote.Cluster.Pi.main(Pi.java:16)

有关问题的任何建议

2 个答案:

答案 0 :(得分:1)

我修复了删除和重新下载所需Maven工件的类似问题。第一次下载以某种方式破坏了。

答案 1 :(得分:0)

我认为您需要从akka发行版(libs内)手​​动导入config-0.3.1.jar