Help with adding new card sets

Hi there!
I recently heard of MAGE, checked it out and found it very promising. After a bit of experimentation I managed to get the project to compile, and started adding some new cards to existing sets. Everything worked out fine until I tried adding a new set (classic sixth edition). The new set shows up in the Deck Editor drop-down, but the card list is empty.
What steps am I missing? Here's what I did:
- Added Mage.Sets/src/mage/sets/ClassicSixth.java, with shorthand "6ED" and package mage.sets.classicsixth
- Added folder Mage.Sets/src/mage/sets/classicsixth
- Created a new card in Mage.Sets/src/mage/sets/classicsixth
- Added addSet(ClassicSixth.getInstance()) in Mage.Sets/src/mage/sets/Sets.java
Also, what's the quickest way of doing iterative testing for cards without having to rebuild and redeploy the whole project?
I recently heard of MAGE, checked it out and found it very promising. After a bit of experimentation I managed to get the project to compile, and started adding some new cards to existing sets. Everything worked out fine until I tried adding a new set (classic sixth edition). The new set shows up in the Deck Editor drop-down, but the card list is empty.
What steps am I missing? Here's what I did:
- Added Mage.Sets/src/mage/sets/ClassicSixth.java, with shorthand "6ED" and package mage.sets.classicsixth
- Added folder Mage.Sets/src/mage/sets/classicsixth
- Created a new card in Mage.Sets/src/mage/sets/classicsixth
- Added addSet(ClassicSixth.getInstance()) in Mage.Sets/src/mage/sets/Sets.java
Also, what's the quickest way of doing iterative testing for cards without having to rebuild and redeploy the whole project?