includeObjects throws exception in command line

I am using liquibase 3.3.2 and trying out the includeObjects. This is the command line (adapted to hide username/password details)

cmd /c liquibase --driver=com.mysql.jdbc.Driver --classpath= --includeObjects=“table:(?i)actor*” --diffTypes=“data” --changeLogFile=<path_to_log_file> --username= --password= --url= generateChangeLog

This is the exception thrown.

Unexpected error running Liquibase: Unknown parameter: ‘includeObjects’

SEVERE 1/22/15 3:17 PM: liquibase: Unknown parameter: ‘includeObjects’
liquibase.exception.CommandLineParsingException: Unknown parameter: ‘includeObje
cts’
at liquibase.integration.commandline.Main.parseOptions(Main.java:702)
at liquibase.integration.commandline.Main.run(Main.java:124)
at liquibase.integration.commandline.Main.main(Main.java:94)

Can any point what I am doing wrong?

Thanks in advance
Sriram

You just need to make sure you put --includeObjects AFTER generateChangeLog in the parameter list. Got me too until Nathan pointed that out.