[ 
http://jira.codehaus.org/browse/MSOURCES-19?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_107248
 ] 

Prasad Kashyap commented on MSOURCES-19:
----------------------------------------

This is what I think is happening. 

The source plugin is used to generate the sources jar.  So when  it is bound to 
any phase (install or deploy), it seems to be correctly generating the sources 
in that phase. 

However, when bound to "install" phase, it seems to be executing before the 
jars are installed in the local repo. So it gets installed. 

But when bound to the "deploy" phase, it seems to be executing after the jars 
are deployed to the remote repo. So it does not get deployed.

Please verify this theory.

> 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

        

Reply via email to