我正在为旧项目生成pom文件。然后我用mvn clean compile install测试em。但有时sourceDirectory指向错误的文件夹并且没有错误。我如何检查是否实际编译了somthing,而不更改代码只有pom或mvn调用。
问候 杰夫
答案 0 :(得分:0)
如果没有编译源,如果你使用插件,文件xxxx-sources.jar就不存在了:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>