I am truing to drop unique constraint using Liquibase

<code>
<changeSet id="it05-k44" author="igr">
        <dropUniqueConstraint tableName="ext_event" constraintName="description"/>
        <dropUniqueConstraint tableName="ext_system" constraintName="description"/>
    </changeSet>
</code>

and i am using maven. So when i first run mvn liquibase:update, Liquibase drops appropriate constraints, but when after that i run mvn clean package it obviously fails because there is no constraints in db. So i couldn't find appropriate maven scope or property to disable Liquibase when running mvn clean package or install.

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.