You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Dennis Lundberg (JIRA)" <ji...@codehaus.org> on 2012/11/02 11:03:14 UTC

[jira] (MASSEMBLY-268) Descriptor bundling dependency sets should contain tag

     [ https://jira.codehaus.org/browse/MASSEMBLY-268?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dennis Lundberg updated MASSEMBLY-268:
--------------------------------------

    Description: 
I am bundling bin distros and include in folders my dependency sets:
say I have this:
{code:xml}
<dependencySets>
  <dependencySet>
    <outputDirectory>lib</outputDirectory>
    <scope>complile</scope>
  </dependencySet>
</dependencySets>
{code}

It bundles al libs which are necessary to compile, means compile, provided which makes sense. Hence, I want to be able to include libs exclusively from a scope. 
Like
{code:xml}
<dependencySets>
  <dependencySet>
    <outputDirectory>lib</outputDirectory>
    <scope>compile</scope>
    <useScopeOnly>true</useScopeOnly>
  </dependencySet>
</dependencySets>
{code}

which basically mean it will include only those libs which have been declared compile and no provided. Tag should default to false.

  was:
I am bundling bin distros and include in folders my dependency sets:
say I have this:
<pre>
<dependencySets>
		<dependencySet>
			<outputDirectory>lib</outputDirectory>
<scope>complile</scope>
		</dependencySet>
	</dependencySets>
</pre>

It bundles al libs which are necessary to compile, means compile, provided which makes sense. Hence, I want to be able to include libs exclusively from a scope. 
Like
<pre>
<dependencySets>
		<dependencySet>
			<outputDirectory>lib</outputDirectory>
                        <scope>complie</scope>
                       <useScopeOnly>true</useScopeOnly>
		</dependencySet>
	</dependencySets>
</pre>

which basically mean it will include only those libs which have been declared compile and no provided. Tag should default to false.

    
> Descriptor bundling dependency sets should contain tag <useScopeOnly>
> ---------------------------------------------------------------------
>
>                 Key: MASSEMBLY-268
>                 URL: https://jira.codehaus.org/browse/MASSEMBLY-268
>             Project: Maven 2.x Assembly Plugin
>          Issue Type: Improvement
>    Affects Versions: 2.2-beta-1
>            Reporter: Michael Osipov
>
> I am bundling bin distros and include in folders my dependency sets:
> say I have this:
> {code:xml}
> <dependencySets>
>   <dependencySet>
>     <outputDirectory>lib</outputDirectory>
>     <scope>complile</scope>
>   </dependencySet>
> </dependencySets>
> {code}
> It bundles al libs which are necessary to compile, means compile, provided which makes sense. Hence, I want to be able to include libs exclusively from a scope. 
> Like
> {code:xml}
> <dependencySets>
>   <dependencySet>
>     <outputDirectory>lib</outputDirectory>
>     <scope>compile</scope>
>     <useScopeOnly>true</useScopeOnly>
>   </dependencySet>
> </dependencySets>
> {code}
> which basically mean it will include only those libs which have been declared compile and no provided. Tag should default to false.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira