5

我正在尝试使用 Eclipse 作为我的 IDE,并且我已经安装了 sbt 作为构建工具和 sbteclipse 作为 Eclipse 的构建工具插件。我按照 sbteclipse 教程http://www.atsnippets.com/development/starting-with-simple-build-tool-sbt-for-scala.html使我的目录结构如下所示:

HelloWorld
     \- src
          \-main
              \-scala
              \-java
          \-test 
              \scala
              \java
     \target
          \-scala-2.9.1
          \-streams

现在,我想使用 Eclipse 作为我的编辑器(我喜欢它的检查、自动完成等)。但是,我不知道如何让 Eclipse 理解上面的目录布局(我无法将上面的目录作为我的项目导入,或者我没有找到正确的方法)。有人可以分享经验吗?

然后我尝试了另一种方法来启动我的玩具项目:我使用 Eclipse 创建了一个 scala 项目。但是,目录结构也不是我想要的。这是我的“New Scala Project”、“New Package (com.foo.hello)”操作的目录结果

HelloWorld
   \-src
       \-com
           \-foo
               \-hello

这也不是我想要的,因为我想将 main 与 test 分开。有什么推荐的方法吗?

4

3 回答 3

9

HelloWorld通过 . 在项目下创建你想要的目录结构Right-click -> New... -> Folder。然后在mainandtest文件夹上Right-click -> Build Path -> Use as Source Folder

于 2012-05-16T14:48:41.487 回答
3

SBT Eclipse 应该生成一个项目文件,所有内容都正确设置。您确实需要在任何构建文件更改后运行“sbt update”,然后重新生成 eclipse 项目文件。我怀疑这可能是你的问题。

它应该生成两个文件,.project并且.classpath,如下所示:

<projectDescription>
  <name>default-0d85ea</name>
  <buildSpec>
    <buildCommand>
      <name>org.scala-ide.sdt.core.scalabuilder</name>
    </buildCommand>
  </buildSpec>
  <natures>
    <nature>org.scala-ide.sdt.core.scalanature</nature>
    <nature>org.eclipse.jdt.core.javanature</nature>
  </natures>
</projectDescription>

<classpath>
  <classpathentry output="target/scala-2.9.2/classes" path="src/main/scala" kind="src"></classpathentry>
  <classpathentry output="target/scala-2.9.2/classes" path="src/main/java" kind="src"></classpathentry>
  <classpathentry output="target/scala-2.9.2/test-classes" path="src/test/scala" kind="src"></classpathentry>
  <classpathentry output="target/scala-2.9.2/test-classes" path="src/test/java" kind="src"></classpathentry>
  <classpathentry path="org.scala-ide.sdt.launching.SCALA_CONTAINER" kind="con"></classpathentry>
  <classpathentry path="/home/dcs/.ivy2/cache/org.scalacheck/scalacheck_2.9.2/jars/scalacheck_2.9.2-1.9.jar" kind="lib"></classpathentry>
  <classpathentry path="/home/dcs/.ivy2/cache/org.scala-tools.testing/test-interface/jars/test-interface-0.5.jar" kind="lib"></classpathentry>
  <classpathentry path="/home/dcs/.ivy2/cache/org.scala-lang/scala-swing/jars/scala-swing-2.9.2.jar" kind="lib"></classpathentry>
  <classpathentry path="org.eclipse.jdt.launching.JRE_CONTAINER" kind="con"></classpathentry>
  <classpathentry path="bin" kind="output"></classpathentry>
</classpath>

请注意后一个文件中的src/main/scalasrc/main/java作为src条目添加。

于 2012-05-16T21:01:56.787 回答
0

尝试创建空项目并手动添加文件夹(右键单击项目 New->Folder)。然后在项目属性中设置构建器并(可选)创建运行配置。

于 2012-05-16T14:50:34.420 回答