0
我有一個可執行的JAR-with-dependencies文件,它在測試報告上進行了一些操作。使用獨立的可執行JAR作爲站點maven目標的插件
我將它保存在我的項目中,並希望在Maven的「網站」目標完成後立即執行它。 有沒有適當的方法來做到這一點? 也許在這裏的某處添加一個路徑到該文件?
<reporting>
<excludeDefaults>true</excludeDefaults>
<plugins>
<plugin>
<groupId>my JAR file</groupId>
<artifactId>traceability-matrix-builder</artifactId>
<path> path to the file</path>
</plugin>
</plugins>
</reporting>
在此先感謝!