Re: Maven - offer anything for runtime?

2012-04-29 Thread Wayne Fay
H... are you talking about PomStrap? ;-) http://pomstrap.jfluid.com/ [site is down for me right now] http://www.pomstrap.techlab.smk.fr/en/ http://pomstrap.tigris.org/ PomStrap is a hierarchical Class-Loader based on the Maven's artifact repository model. In a nutshell, it provides a runtim

Re: Maven - offer anything for runtime?

2012-04-29 Thread Benson Margulies
I can't track down the thing I was referring to. It has a cute project name and was embedded maven as a way to manage classpath containers and plugin downloads at runtime. I also looked a bit at SISU to see if it was applicable to your problem, but the eclipse site is not revealing at this time. O

Re: Lifecycle phase in which the url for distributionManagement/snapshotRepository is calculated

2012-04-29 Thread Olivier Lamy
Yup you can add properties to project.getProperties() But in your case you want to change distributionManagement urls using properties interpolation mechanism ? but it's too late using a plugin as model has been build. An option you have maybe it's to use maven3 lifecycle extension mechanism: http

Re: Lifecycle phase in which the url for distributionManagement/snapshotRepository is calculated

2012-04-29 Thread Mirko Friedenhagen
Hm, so this seems to be true only for some elements of the pom but not plugin configurations. The http://mojo.codehaus.org/buildnumber-maven-plugin/ actually adds buildNumber and uses it in e.g. the maven-jar-plugin to add a field Implementation-Build. Regards Mirko On Sun, Apr 29, 2012 at 11:09

Re: Lifecycle phase in which the url for distributionManagement/snapshotRepository is calculated

2012-04-29 Thread Hervé BOUTEMY
yes, property evaluations is done in the "model interpolation" step of the Maven model build: see [1] for a global view no, no plugin can add any property at any phase, sorry Regards, Hervé [1] http://maven.apache.org/ref/3.0.4/maven-model-builder/ Le dimanche 29 avril 2012 08:36:10 Anders Ha