我們在通常由maven surefire插件執行的JUnit測試中使用過濾的testResources。也就是說,pom包含一個部分調試maven junit測試過濾資源?
<build>
<testResources>
<testResource>
<directory>src/test/resources</directory>
<filtering>true</filtering>
</testResource>
</testResources>
...
如何在調試器中運行此類JUnit測試?如果我在eclipse中執行測試,測試失敗,因爲測試資源沒有被過濾。如果過濾後的測試資源將寫入目標目錄的某處,我可以將其用作額外的源路徑 - 但事實並非如此。如果我嘗試使用Debug As/maven test在eclipse中運行maven build,那麼構建不會停在斷點處。任何其他想法?