Has anyone had luck with creating a CustomSqlChange and using it with the updateDatabase in ANT?
I’ve found that I can’t just add the custom java object to the classpathref for the updateDatabase task. If I add the object to ANT’s classpath by way of ${user.home}/ant/lib it will find it but then it won’t find Liquibase since they are presumably in different classloaders now…
then if I add Liquibase to ${user.home}/ant/lib it will work… but I don’t know if there are going to be any unintended consequences from fooling around with the classpath like this?
Am I missing somethinga and making this way too complicated?
Thanks in advance for any help.