You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Florian Eska (JIRA)" <ji...@codehaus.org> on 2006/04/27 12:02:18 UTC

[jira] Created: (MNG-2245) maven-source-plugin should support goal source:test-jar (install:install should also install the generated test-source-jar)

maven-source-plugin should support goal source:test-jar (install:install should also install the generated test-source-jar)
---------------------------------------------------------------------------------------------------------------------------

         Key: MNG-2245
         URL: http://jira.codehaus.org/browse/MNG-2245
     Project: Maven 2
        Type: New Feature

  Components: Plugins and Lifecycle  
 Environment: m2 2.0.3
maven-source-plugin 2.0
maven-install-plugin 2.1
    Reporter: Florian Eska


In the maven-sourec-plugin I missed the possibility source:test-jar as in the the maven-jar-plugin jar:test-jar.

At the moment it is hard work to insert the wished source test-jar in the repository (gnerating and install)

I have seen that the source code is prepared to generate the test source jar. 
It seems to me that the only thing that is missing the switch to call the generator of test-jar and extend the documentation.

If a xyz-version-test-sources.jar is generated the maven-install.plugin should have the possiblity to install the generated source in the local repository.



-- 
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


[jira] Closed: (MSOURCES-4) maven-source-plugin should support goal source:test-jar (install:install should also install the generated test-source-jar)

Posted by "Jason van Zyl (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MSOURCES-4?page=all ]

Jason van Zyl closed MSOURCES-4.
--------------------------------

    Resolution: Fixed

 This in a parent POM will install the test source jars:  


  <plugins>
      <plugin>
        <artifactId>maven-source-plugin</artifactId>
        <configuration>
          <aggregate>false</aggregate>
        </configuration>
        <executions>
          <execution>
            <phase>package</phase>  
            <goals>
              <goal>test-jar</goal>
            </goals>          
          </execution>
        </executions>
      </plugin>    


> maven-source-plugin should support goal source:test-jar (install:install should also install the generated test-source-jar)
> ---------------------------------------------------------------------------------------------------------------------------
>
>                 Key: MSOURCES-4
>                 URL: http://jira.codehaus.org/browse/MSOURCES-4
>             Project: Maven 2.x Sources Plugin
>          Issue Type: New Feature
>         Environment: m2 2.0.3
> maven-source-plugin 2.0
> maven-install-plugin 2.1
>            Reporter: Florian Eska
>
> In the maven-sourec-plugin I missed the possibility source:test-jar as in the the maven-jar-plugin jar:test-jar.
> At the moment it is hard work to insert the wished source test-jar in the repository (gnerating and install)
> I have seen that the source code is prepared to generate the test source jar. 
> It seems to me that the only thing that is missing the switch to call the generator of test-jar and extend the documentation.
> If a xyz-version-test-sources.jar is generated the maven-install.plugin should have the possiblity to install the generated source in the local repository.

-- 
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