Use the ant file I just checked in, and it enables the -XstartOnFirstThread
option only on Mac OS.
Julian
> luizfox wrote:
>
> Your build.xml works for me (Linux), but it doesn't load the MySQL
> driver.
People use such a wide variety of databases that it's not practical to deal
with them all in the build.xml. You'll have to modify build.xml to add your
specific driver to the path.
>
> Where did you put
> Class.forName("org.olap4j.driver.xmla.XmlaOlap4jDriver")?
I added that line to Olap4jServiceImpl.java manually. But note that if you
are running JDK 1.6, you don't need the Class.forName at all - JDBC 4.0
automatically loads all drivers declared in all jars on the classpath. But
in 1.5 and earlier, you still need that Class.forName line.
Julian