I want to deploy sources and javadocs with my snapshots. This means that I want to automize the following command:

mvn clean source:jar javadoc:jar deploy

Just to execute:

mvn clean deploy

I don't want to have javadoc/sources generation executed during the install phase (i.e. local builds).

I know that source/javadoc plugins can be synchronized with the execution of the release plugin but I can't figure out how to wire it to the snapshots releases.

link|improve this question

feedback

2 Answers

up vote 13 down vote accepted
<build>
  <plugins> 
    <plugin>
      <artifactId>maven-source-plugin</artifactId>
      <executions>
        <execution>
          <id>attach-sources</id>
          <phase>deploy</phase>
          <goals><goal>jar-no-fork</goal></goals> 
        </execution>
      </executions>
    </plugin>
    <plugin> 
      <artifactId>maven-javadoc-plugin</artifactId> 
      <executions> 
        <execution> 
          <id>attach-javadocs</id>
          <phase>deploy</phase>
          <goals><goal>jar</goal></goals> 
        </execution> 
      </executions> 
    </plugin>
    <plugin> 
      <!-- explicitly define maven-deploy-plugin after other to force exec order -->
      <artifactId>maven-deploy-plugin</artifactId> 
      <executions> 
        <execution> 
          <id>deploy</id>
          <phase>deploy</phase>
          <goals><goal>deploy</goal></goals> 
        </execution> 
      </executions> 
    </plugin>
  </plugins> 
</build>

See Sonatype's OSS parent POM for a complete example.

link|improve this answer
I'm using this setup, and it works quite well. However I had two small issues: one, generated sources are not included in the "jar" goal, you'll need "jar-no-fork". Two, there is a bug in the release plugin that will cause to generate the release sources twice (and therefore deploeyed twice, which will lead to problems with repository managers) – mglauche Jan 18 '11 at 15:18
maven-source-plugin:jar attaches to the package phase by default, so you could leave off <phase>verify</phase> and accomplish the same thing. Besides I'm not sure why you'd attach this to verify anyway as that phase is intended for "package the project and run integration tests". – matt b Jan 18 '11 at 15:22
@mglauche @matt thanks for your comments. I've just made the appropriate changes. – sfussenegger Jan 18 '11 at 15:26
Sorry guys, but maven-deploy-plugin (as opposed to the release-plugin) doesn't support <arguments> element in <configuration>. So the configuration in your answer doesn't work for deploy (only for release). – Henryk Konsek Jan 19 '11 at 11:29
1  
@Henryk Ok, I've explicitly added maven-deploy-plugin as well as maven seems (or tries) to guarantee execution in the oder the plugins are defined in the POM. It might require some experimenting though. – sfussenegger Jan 19 '11 at 12:50
show 4 more comments
feedback

Just to add an alternative that doesn't require you to muck with plugin configuration:

mvn -DperformRelease=true [goals]

Credit goes to mcbeelen from http://sea36.blogspot.com/2009/02/attaching-javadocs-and-sources-to-maven.html?showComment=1314177874102#c6853460758692768998

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.