Maven: Multiple plugins invoking multiple lifecycles -
i've been using maven quite time (years), it's surprising me i've never come across issue before, or @ least have way of dealing it...
i trying invoke following plugin/goals (in specified order):
- sql-maven-plugin:execute
- hibernate3:hbm2ddl
- dbunit:operation
- jetty:run
in nutshell, i'm creating database, generating schema, inserting data, , starting webapp. however, both hbm2ddl , jetty:run goals invoke (fork) lifecycle phases of own, causes of other bound plugin goals run multuple times.
this not want. there way workaround issue?
thanks!!
i've found few stack overflow issues related (jetty:run goal in particular), related bugs:
Comments
Post a Comment