我使用maven发布插件来生成项目的发布。我不想在构建时生成Javadoc。另一方面,当我调用release:perform时,我想如果maven会生成sources.jar和javadoc.jar并将其部署到maven发布存储库。只是因为我很好奇如何禁用部署source.jar,因为它看起来默认是部署的。
答案 0 :(得分:10)
在Maven Release Plugin的文档中,有一个useReleaseProfile
参数,用于确定Whether to use the release profile that adds sources and javadocs to the released artifact, if appropriate
。默认情况下为true
。您可以尝试根据需要进行更改以启用/禁用source / javadocs。
答案 1 :(得分:10)
使用releaseProfiles参数(例如:src,javadoc
)打开一个或多个配置文件,并在这些配置文件中定义源和javadoc生成:
<profiles>
<profile>
<id>src</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>javadoc</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>