You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@felix.apache.org by "Stuart McCulloch (JIRA)" <ji...@apache.org> on 2007/05/11 23:20:15 UTC

[jira] Commented: (FELIX-253) Dependency is ignored when it contains excludes

    [ https://issues.apache.org/jira/browse/FELIX-253?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12495176 ] 

Stuart McCulloch commented on FELIX-253:
----------------------------------------

Hi Jens - just wondering whether this is still a problem with the current version of the bundle plugin?

> Dependency is ignored when it contains excludes
> -----------------------------------------------
>
>                 Key: FELIX-253
>                 URL: https://issues.apache.org/jira/browse/FELIX-253
>             Project: Felix
>          Issue Type: Bug
>          Components: Maven Bundle Plugin
>    Affects Versions: 0.8.0
>            Reporter: Jens Baitinger
>
> I have a ejb client jar that is a dependency for a eclipse plugin. Unfortunately it brings dependencies to spring and Ibatis, that are used by the ejbs. But they are not needed for the client and I don't want to have them in my eclipse plugin, that should only hold the ejb client jar. When I exclude those dependencies, the whole ejb client jar is ignored.
> <dependencies>
> 		<dependency>
> 			<groupId>bla</groupId>
> 			<artifactId>service-ejb</artifactId>
> 			<version>1.0-SNAPSHOT</version>
> 			<type>ejb-client</type>			
> 		</dependency>
> 		<dependency>
> 			<groupId>org.springframework</groupId>
> 			<artifactId>spring</artifactId>
> 			<version>1.2.8</version>
> 			<scope>provided</scope>
> 		</dependency>
> 		<dependency>
> 			<groupId>com.ibatis</groupId>
> 			<artifactId>ibatis2-sqlmap</artifactId>
> 			<version>2.1.7.597</version>
> 			<scope>provided</scope>
> 		</dependency>
> 	</dependencies>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.