在我的父pom中,我得到了这个配置来部署源jar:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jar</goal>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
但是tycho构建模块会忽略它,因此它们的源不会安装/部署在maven存储库中。这意味着我不能将它们包含在程序集中(特别是如果程序集模块位于另一个git存储库中)。
是否可以配置其中一个tycho插件来构建和部署源jar?
答案 0 :(得分:4)
使用此:
<plugin>
<groupId>org.sonatype.tycho</groupId>
<artifactId>maven-osgi-source-plugin</artifactId>
<version>${tycho-version}</version>
<executions>
<execution>
<id>plugin-source</id>
<goals>
<goal>plugin-source</goal>
</goals>
</execution>
</executions>
</plugin>
请参阅https://github.com/jsievers/tycho-demo/blob/master/tychodemo.parent/pom.xml