Hello, On 9/8/07, Hussein Badakhchani <[EMAIL PROTECTED]> wrote: > Hello, > > In case anyone is interested I have posted some instructions for > installing and using the Maven WebLogic Plug in on my blog. > > http://dev2dev.bea.com/blog/hoos/archive/2007/09/using_appc_with.html > > I am new to Maven and thus my implementation may not be optimal. For > instance I found that I had to describe the dependencies twice in my > pom.xml file, is this a standard thing in Maven or have I missed > something?
Not sure why you had to declare <dependencies /> in the <plugin /> section. I may be wrong but my point of view is that if the plugin requires dependencies, then the plugin should declare them in it's own pom (check https://svn.codehaus.org/mojo/trunk/mojo/weblogic-maven-plugin/pom.xml). Anyway, I didn't try so this is only theory. > > Also I found that Maven includes all the jars used to precompile JSPs into > the final package, so I end up with files like weblogic.jar being > deployed. I would like to know what options there are for filtering such > files as the inclusion of the files violates our packaging specifications. You need to specify the "scope" of your dependencies. I think <scope>runtime</scope> is what you need. > > Many thanks, > Hoos > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Pascal --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
