[
http://jira.codehaus.org/browse/MSOURCES-19?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_111691
]
Dennis Lundberg commented on MSOURCES-19:
-----------------------------------------
Why do you want to change the phase that maven-source-plugin is run in?
The default phase is package, which seems natural to me. You are packaging your
artifacts.
> source plugin with phase 'package' does not upload sources.jar into repository
> ------------------------------------------------------------------------------
>
> Key: MSOURCES-19
> URL: http://jira.codehaus.org/browse/MSOURCES-19
> Project: Maven 2.x Source Plugin
> Issue Type: Bug
> Affects Versions: 2.0.3
> Environment: windows
> Reporter: werner mueller
> Assignee: Stephane Nicoll
>
> hallo
> when using the source plugin with phase install:
> <plugin>
> <artifactId>maven-source-plugin</artifactId>
> <configuration>
> <attach>true</attach>
> </configuration>
> <executions>
> <execution>
> <phase>install</phase>
> <goals>
> <goal>jar</goal>
> <goal>test-jar</goal>
> </goals>
> </execution>
> </executions>
> </plugin>
> the generated sources are uploaded into the snapshot repository just fine
> (when i execute 'mvn deploy')
> when the phase is changed to deploy:
> <plugin>
> <artifactId>maven-source-plugin</artifactId>
> <configuration>
> <attach>true</attach>
> </configuration>
> <executions>
> <execution>
> <phase>deploy</phase>
> <goals>
> <goal>jar</goal>
> <goal>test-jar</goal>
> </goals>
> </execution>
> </executions>
> </plugin>
> the sources jars are created but not copied into the local repository nor
> uploaded into the snapshot repository.
> i would like to create source jar's in a later phase than install because in
> eclipse/m2eclipse an install would take too long since it creates the sources
> jar every time.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira