私はいくつかの重いjarファイルを必要とするテストプロジェクトを持っており、${M2_HOME}\test\src\main\resources\
それらをpom.xmlに追加します:
<dependency>
<groupId>server</groupId>
<artifactId>server</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${M2_HOME}\test\src\main\resources\server.jar</systemPath>
</dependency>
<dependency>
<groupId>client</groupId>
<artifactId>client</artifactId>
<version>6.0</version>
<scope>system</scope>
<systemPath>${M2_HOME}\test\src\main\resources\client.jar</systemPath>
</dependency>
ソナー分析中にそれらを除外できるかどうか、または一般的にはJavaソースフォルダーを分析するだけでよいかどうかを知りたいです。