Add a profile which activates on an IBM vendor URL, e.g. "http://www.ibm.com"? I don't have an IBM JVM here, but you can probably start it and System.out the value of the "java.vendor.url" system property.
-- Richard Am 11.06.2013 um 22:21 schrieb Marshall Schor <[email protected]>: > I notice the integration test for this has it's own special pom with a section > that looks like: > > <profiles> > <profile> > <id>sun-jvm</id> > <activation> > <property> > <name>java.vendor.url</name> > <value>http://java.sun.com/</value> > ... > </profile> > <profile> > <id>osx</id> > <activation> > <property> > <name>java.vendor.url</name> > <value>http://www.apple.com/</value> > </property> > ,,, > </profile> > </profiles> > > I often am running on an IBM JVM, which is neither of the above. > > The profiles set some Java -X and -XX style properties and for the mac, adds a > dependency for org.eclipse.jdt.launching.macosx to a tycho-surefire-plugin. > > Any ideas how to set these for the IBM java? > > -Marshall
