我正在为旧项目生成pom文件。然后我用mvn clean compile install测试它们。但有时sourceDirectory指向错误的文件夹,并且没有错误。我怎么能在不更改代码的情况下检查是否真的编译了一些东西——只有pom或mvn调用。
问候Jeff
如果没有编译的源,如果使用插件,文件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>