[
https://issues.apache.org/jira/browse/MSOURCES-19?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17959399#comment-17959399
]
Matthias Bünger commented on MSOURCES-19:
-----------------------------------------
This project has moved from Jira to GitHub Issues. This issue was migrated to
[apache/maven-source-plugin#100|https://github.com/apache/maven-source-plugin/issues/100].
> source plugin with phase 'package' does not upload sources.jar into repository
> ------------------------------------------------------------------------------
>
> Key: MSOURCES-19
> URL: https://issues.apache.org/jira/browse/MSOURCES-19
> Project: Maven Source Plugin (Moved to GitHub Issues)
> Issue Type: Bug
> Affects Versions: 2.0.3
> Environment: windows
> Reporter: Werner Mueller
> Assignee: Stephane Nicoll
> Priority: Major
>
> 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 was sent by Atlassian Jira
(v8.20.10#820010)