Well, I have a plugin that generates an EJB from a service class. The EJB doesn't get placed in the pom.build.sourceDirectory structure, because that wouldn't make sense (don't want the EJB checked in to source repository, don't want users to go fiddling with it outside of generation, etc). The next thing that needs to happen is to generate the Remotes and Homes etc. using the XDoclet EJBDoclet plugin. Unfortunately, that plugin looks for the files to include in the pom.build.sourceDirectory structure instead of some user settable property. Therefore, I need to change the value of this variable before I make the xdoclet:ejbdoclet call.
So, how can I do this? WM --- Jason van Zyl <[EMAIL PROTECTED]> wrote: > On Wed, 2004-03-17 at 11:34, Webb Morris wrote: > > I have a need to change the pom.build.sourceDirectory parameter on the fly. I've > > tried the > > following: > > > > <j:set var="pom.build.sourceDirectory" value="new value"/> > > > > But this does not work. Ideas? > > You can make it work, but why exactly are you trying to do that? You > shouldn't need to. > > > WM > > > > __________________________________ > > Do you Yahoo!? > > Yahoo! Mail - More reliable, more storage, less spam > > http://mail.yahoo.com > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > -- > jvz. > > Jason van Zyl > [EMAIL PROTECTED] > http://maven.apache.org > > happiness is like a butterfly: the more you chase it, the more it will > elude you, but if you turn your attention to other things, it will come > and sit softly on your shoulder ... > > -- Thoreau > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > __________________________________ Do you Yahoo!? Yahoo! Mail - More reliable, more storage, less spam http://mail.yahoo.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
