在多个目标上运行./pants idea
时,生成的 IntelliJ 项目允许我引用我的目标实际上并不依赖的代码。
这是裤子的一个例子
./pants idea examples/tests/java/com/pants/examples/hello/greet:: \
examples/tests/java/com/pants/examples/useproto::
在 Greeting.java 中,我添加了一个对 hello 项目实际上并不依赖的东西的依赖:
public static String greet(String greetee) {
// These two lines added to illustrate question
Distance proto = Distance.getDefaultInstance();
System.out.println("Proto: " + proto.toString());
return "Hello, " + greetee + "!";
}
但是该GreetingTest
项目在 IntelliJ 下运行良好!
但是,当我尝试从命令行运行 GreetingTest 时,它失败了。
$ ./pants test examples/tests/java/com/pants/examples/hello/greet
INFO] Detected git repository at /Users/zundel/Src/pants on branch master
11:24:20 00:00 [main]
(To run a reporting server: ./pants server)
11:24:20 00:00 [bootstrap]
11:24:20 00:00 [setup]
11:24:20 00:00 [parse]
Executing tasks in goals: bootstrap -> imports -> unpack-jars -> deferred-sources -> gen -> resolve -> compile -> resources -> test
11:24:20 00:00 [bootstrap]
11:24:20 00:00 [bootstrap-jvm-tools]
11:24:20 00:00 [imports]
11:24:20 00:00 [ivy-imports]
11:24:20 00:00 [unpack-jars]
11:24:20 00:00 [unpack-jars]
11:24:20 00:00 [deferred-sources]
11:24:20 00:00 [deferred-sources]
11:24:20 00:00 [gen]
11:24:20 00:00 [thrift]
11:24:20 00:00 [protoc]
11:24:20 00:00 [antlr]
11:24:20 00:00 [ragel]
11:24:20 00:00 [jaxb]
11:24:21 00:01 [wire]
11:24:21 00:01 [aapt]
11:24:21 00:01 [scrooge]
11:24:21 00:01 [resolve]
11:24:21 00:01 [ivy]
Invalidated 2 targets.
11:24:21 00:01 [ivy-resolve]
11:24:21 00:01 [compile]
11:24:21 00:01 [compile]
11:24:21 00:01 [jvm]
11:24:21 00:01 [jvm-compilers]
11:24:21 00:01 [find-deleted-sources]
Invalidated 2 targets.
11:24:21 00:01 [partition-analysis]
Compiling 2 java sources in 2 targets (partition 1 of 1).
11:24:21 00:01 [compile]
11:24:21 00:01 [jmake]
Jmake version 1.3.8-10
Opening project database... Done.
Recompiling source files:
/Users/zundel/Src/pants/examples/src/java/com/pants/examples/hello/greet/Greeting.java
/Users/zundel/Src/pants/examples/src/java/com/pants/examples/hello/greet/Greeting.java:6: error: package com.pants.examples.distance.Distances does not exist
import com.pants.examples.distance.Distances.Distance;
^
/Users/zundel/Src/pants/examples/src/java/com/pants/examples/hello/greet/Greeting.java:37: error: cannot find symbol
symbol: class Distance
location: class com.pants.examples.hello.greet.Greeting
Distance proto = Distance.getDefaultInstance();
^
/Users/zundel/Src/pants/examples/src/java/com/pants/examples/hello/greet/Greeting.java:37: error: cannot find symbol
symbol: variable Distance
location: class com.pants.examples.hello.greet.Greeting
Distance proto = Distance.getDefaultInstance();
^
Reading existing dependency file at /Users/zundel/Src/pants/.pants.d/compile/jvm/java/jmake-depfiles/global_depfile
Writing class dependency file to /Users/zundel/Src/pants/.pants.d/compile/jvm/java/jmake-depfiles/global_depfile
Writing project database... Done.
FAILURE: compilation error
Waiting for background workers to finish.
FAILURE