liqiubase diff documentation

Hi,

In the tutorial, http://www.liquibase.org/tutorial-using-oracle, chapter 5.4 you find this diff command:

    liquibase diff --baseUrl=jdbc:oracle:thin:@localhost:1521:XE --baseUsername=lb_test --basePassword=lb_test

However, in http://www.liquibase.org/manual/diff we find this:

    liqubase.sh --driver=oracle.jdbc.OracleDriver \        --url=jdbc:oracle:thin:@testdb:1521:test \        --username=bob \        --password=bob \    diff \        --baseUrl=jdbc:oracle:thin:@localhost/XE \        --baseUsername=bob \        --basePassword=bob

Is the tutorial wrong or am I missing something?

PS. Just about to try it out DS.

Best regards /Lasse

The tutorial may be assuming some configuration in a liquibase.properties file.

The --base* parameter names changed between 1.9 and 2.0.  You may want to call liquibase --help to get the current versions.

Nathan