I made a switch from Netbeans Ant projects to Maven projects. I achieved almost everything by finding a plugin that does what I want (like deployment) and sometimes changing the way I do it a tiny bit. And the more complex custom build tasks can be achieved by using the existing ant-run plugin for maven (which runs ant tasks), or if it's really complex, something ant can't do then you can write your own plugin.
Quintin Beukes On Wed, Oct 21, 2009 at 11:47 AM, Entner Harald <[email protected]> wrote: > Hello, > > has anyone tried to migrate from Netbeans (which uses ant as build > script) to Maven. I face some serious problems doing so, with Bpel- and > Composite Application Modules. > > I see two solutions (both are not perfect): > > - servicemix from apache, which seems not to be applicable with existing > project structures. (Additionally we are using OpenESB) > - write my own plugin, that invokes the ant tasks defined in the > build-impl.xml, created by netbeans (currently i'm going that way, but > i'm wondering if there is not a better solution) > > All other things are already running (contract first webservices, jaxb > code generation, ..) > > thx > > Harald > > --------------------------------------------------------------------- > 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]
