On Thu, Apr 22, 2010 at 5:46 AM, <[email protected]> wrote: > Author: lresende > Date: Thu Apr 22 04:46:56 2010 > New Revision: 936611 > > URL: http://svn.apache.org/viewvc?rev=936611&view=rev > Log: > Changing stripes dependency scope to properly generate OSGi 'bundle' and > avoid issues with stripes module manifest > > Modified: > tuscany/sca-java-2.x/trunk/modules/stripes/pom.xml > > Modified: tuscany/sca-java-2.x/trunk/modules/stripes/pom.xml > URL: > http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/modules/stripes/pom.xml?rev=936611&r1=936610&r2=936611&view=diff > ============================================================================== > --- tuscany/sca-java-2.x/trunk/modules/stripes/pom.xml (original) > +++ tuscany/sca-java-2.x/trunk/modules/stripes/pom.xml Thu Apr 22 04:46:56 > 2010 > @@ -46,7 +46,6 @@ > <groupId>net.sourceforge.stripes</groupId> > <artifactId>stripes</artifactId> > <version>1.5.2</version> > - <scope>provided</scope> > </dependency> > > <dependency> >
What are the problems caused by using a scope of provided? Using compile scope means it gets included all the time which isn't really whats wanted which is why it was using provided scope. I guess i could fix that by using excludes in other places but it would be better to fix the osgi problem so provided scope works. ...ant
