public void startServers() throws Exception {
ModuleItem pkgA = rulesRepository.createModule("applyChangeSetTwice",
"this is package applyChangeSetTwice");
AssetItem ruleA1 = pkgA.addAsset("ruleA1", "", null, AssetFormats.DRL);
ruleA1.updateContent("rule 'ruleA1' when org.drools.Person() then end");
ruleA1.checkin("version 1");
AssetItem ruleA2 = pkgA.addAsset("ruleA2", "", null, AssetFormats.DRL);
ruleA2.updateContent("rule 'ruleA2' when org.drools.Person() then end");
ruleA2.checkin("version 1");
repositoryPackageService.createModuleSnapshot(pkgA.getName(), "snapshotA1", false, "",false,"","","",false,"","",false,"");