Suppose I do have maven 2 java project in my local machine, when I'm doing mvn install, I'm build project jar and push it to my local maven repo, how can I force maven to push to local repo project sources jar also? This is useful if I'll use above mentioned project as dependency while developing new project, and can use mvn eclipse:eclipse -DdownloadSources feature.

Thanks.

link|improve this question

67% accept rate
feedback

2 Answers

up vote 5 down vote accepted

This snippet automatically installs / deploys a source jar from any install / deploy:

<project>
  ...
  <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>
  ...
</project>
link|improve this answer
wow, it so simple! was hard to find this on maven site, thanks! – abovesun Oct 28 '10 at 8:40
Is there a way to do this from the command line, without editing the pom? – hertzsprung May 21 at 16:06
1  
@hertzsprung sure: mvn clean source:jar install – Sean Patrick Floyd May 21 at 21:05
feedback

Have you try maven release plugin?

link|improve this answer
release? for the local repository? I don't think so... – Sean Patrick Floyd Oct 27 '10 at 10:17
feedback

Your Answer

 
or
required, but never shown

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