That sounds very similar to last comment on the ticket that I linked to. 1) the eclipse plugin puts all dependencies onto the .classpath file (because it doesn't understand scope for normal jars). 2) The eclipse tool copied all jars into your web container (jboss, tomcat, ...)
but maybe I'm just not understanding correctly... If that is the problem, you can either apply the patch that's in the ticket to your own version of eclipse or another solution that I have seen is that you set up a profile in your pom file that's "always active" and put your "provided" dependencies in that. I have not tried that second solution myself though. HTH Jim On 10/2/07, Juan Ignacio Garzón <[EMAIL PROTECTED]> wrote: > > Not exactly. I'm not using sysdeo's tomcat, just Eclipse WST with a > Server configured, and it deploys my app by copying all the files > inside tomcat (it also configures a default context). The problem is > that the provided-scope jars get copyied too by eclipse and they > shouldn't (a good example is servlet-api.jar, its required to compile > but shouldn't be deployed). It seems that there is a workaround using > sysdeo... the fact is that im using a local tomcat and its easier > using eclipse WST for make deploys in this case, i think... > > Thanks anyway!! > > 2007/10/2, Jim Sellers <[EMAIL PROTECTED]>: > > Is this your issue? > > http://jira.codehaus.org/browse/MECLIPSE-79 > > > > HTH > > Jim > > > > > > On 10/2/07, Juan Ignacio Garzón <[EMAIL PROTECTED]> wrote: > > > > > > Hi, I'm using m2eclipse 0.0.10, Eclipse 3.3.0, Maven 2.0.7. > > > > > > I have added some maven dependencies using a "provided" scope: > > > > > > <dependency> > > > <groupId>pae</groupId> > > > <artifactId>library</artifactId> > > > <version>1.0</version> > > > <scope>provided</scope> <--- this line > > > </dependency> > > > > > > But,the problem is, that when I publish my site using eclipse, that > > > dependency get's deployed, because all the jars inside "Maven2 > > > Dependencies module" are deployed, and I couldnt find a way to filter > > > some of them. > > > > > > Thanks! > > > > > > --------------------------------------------------------------------- > > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >
