Skip to content

Commit

Permalink
Upgrade to xerces 2.6 (2.3 doesn't play well with jdk 1.6); update na…
Browse files Browse the repository at this point in the history
…mes of mondrian jars (since upgrade to ivy they no longer contain version numbers); OlapTest was wrongly assuming that Schema.getCubes() produces a list in a particular order.

git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@96 c6a108a4-781c-0410-a6c6-c2d559e19af0
  • Loading branch information
julianhyde committed May 31, 2008
1 parent e201c97 commit e4e7fbe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ ${jar-jdk14.file}"/>
<pathelement location="${mondrian.lib.dir}/commons-collections.jar"/>
<pathelement location="${mondrian.lib.dir}/commons-vfs.jar"/>
<pathelement location="${mondrian.lib.dir}/commons-logging.jar"/>
<pathelement location="${mondrian.lib.dir}/commons-math-1.0.jar"/>
<pathelement location="${mondrian.lib.dir}/xercesImpl.jar"/>
<pathelement location="${mondrian.lib.dir}/commons-math.jar"/>
<pathelement location="${mondrian.lib.dir}/xml-apis.jar"/>
-->

</path>
Expand Down
Binary file modified lib/xercesImpl.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions testsrc/org/olap4j/OlapTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,8 @@ public void testModel() {
return;
}

// take the first cube
Cube cube = cubes.get(0);
// take the "Sales" cube
Cube cube = cubes.get("Sales");
System.out.println("using cube name="+cube.getName());

// create an XML doc to represent the Cube and print it out
Expand Down

0 comments on commit e4e7fbe

Please sign in to comment.