2

我尝试使用 Play(2.0.2) 项目在 Jenkins 上建立构建管道。

因为我只想构建一次源并将类用于下游构建,所以我现在创建了一个运行“sbt test:compile”的“编译”作业。到目前为止有效。

下一个工作应该只运行编译的测试。如果我使用“sbt test”,它会按预期工作,但会再次编译源代码。

但是如果我尝试运行“sbt test:run”,它会说:

[info] Loading project definition from ~/myproject/project
[info] Set current project to myproject (in build file: ~/myproject/)
java.lang.RuntimeException: No main class detected.
    at scala.sys.package$.error(package.scala:27)
[error] {file:~/myproject/test:run: No main class detected.

同样的情况也发生在本地。我可以运行“sbt test”但不能运行“sbt test:run”。同样的错误。

有没有人可以指出我正确的方向?

4

1 回答 1

3

test:run运行测试源中定义的主类,类似于compile:run在主源中运行主类。如果没有主类,则没有可运行的东西。

于 2012-06-29T12:18:13.980 回答