How to set liquibase.should.run to false?

Sorry if this is a dumb question but I cannot get liquibase to NOT run as a servlet listener.  My project deploys to a JBoss production environment that uses jndi, but for development we all use tomcat insde of eclipse.  We are using maven and have setup a profile for building a war for JBoss.  In this jboss profile we set liquibase.should.run property to true.  All other times we want it false.  The problem is that it always tries to run no matter how we set it.  We are having difficulties getting the system property to be set correctly.  Can someone help?




    liquibase.changelog

    sql/changesets/db.changelog-master.xml

 

    liquibase.datasource

    ${liquibase.jndi}

 


    liquibase.onerror.fail

    true


${liquibase.should.run}

  

    liquibase.integration.servlet.LiquibaseServletListener

Usually it is set as a JVM flag with -D as a prefix. -Dliquibase.should.run=false


Nathan