Re: How to script database upgrade using ANT script

2010-11-08 Thread Mugdha Acharya
We are using dbdeploy and are very happy with the results. You can read more about it at http://dbdeploy.com/ On Mon, 2010-11-08 at 07:19 -0800, Java Jboss wrote: > Hi, > > Thank you to all for the suggestions. I have now

run junit categories from ant

2010-10-06 Thread Mugdha Acharya
How do you run junit categories from ant. It will be nice if someone can post an example. I have tried following Java code- @RunWith(Categories.class) @IncludeCategory(MyCategory.class) @SuiteClasses( {A.class }) // A.class has test methods with category myCategory public class MyCategorySuite{