Mark R. Diggory wrote:
> Is there a way I can detect the jvm verison on install or somehow
> manage which jars get installed given my jvm version?


I think you can use the jar override feature to specify a different version than what's in your project.xml


maven.jar.override=on

*Maybe* in maven.xml you could use an Ant conditional to detect the Jvm and set the properties accordingly

if(1.4) {
  <ant:property name="maven.jar.bcprov.version" value="jdk14-121"/>
  etc..
}

I have no idea if this would work...





---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to