Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

up vote 8 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>
share|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 '12 at 16:06
4  
@hertzsprung sure: mvn clean source:jar install – Sean Patrick Floyd May 21 '12 at 21:05

Have you try maven release plugin?

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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