Refs #1004 Rework remote exception handling

This commit is contained in:
Konstantin Krivopustov 2011-11-21 12:04:53 +00:00
parent 3e0ba255e9
commit 421a7fc1b5

View File

@ -80,7 +80,6 @@ configure([sharedLibModule, globalModule, coreModule, clientModule, guiModule, w
compile(group: 'org.springframework', name: 'spring-beans', version: '3.0.5.RELEASE') compile(group: 'org.springframework', name: 'spring-beans', version: '3.0.5.RELEASE')
compile(group: 'org.springframework', name: 'spring-context', version: '3.0.5.RELEASE') compile(group: 'org.springframework', name: 'spring-context', version: '3.0.5.RELEASE')
compile(group: 'org.springframework', name: 'spring-web', version: '3.0.5.RELEASE') compile(group: 'org.springframework', name: 'spring-web', version: '3.0.5.RELEASE')
compile(group: 'org.springframework', name: 'spring-orm', version: '3.0.5.RELEASE')
testCompile(group: 'com.haulmont.thirdparty', name: 'jmockit', version: '0.999.10') testCompile(group: 'com.haulmont.thirdparty', name: 'jmockit', version: '0.999.10')
testCompile(group: 'junit', name: 'junit', version: '4.5') testCompile(group: 'junit', name: 'junit', version: '4.5')
@ -368,7 +367,6 @@ configure(desktopModule) {
compile(group: 'com.haulmont.thirdparty', name: 'miglayout', version: '3.7.4') compile(group: 'com.haulmont.thirdparty', name: 'miglayout', version: '3.7.4')
compile(group: 'com.haulmont.thirdparty', name: 'glazedlists', version: '1.9.20110801') compile(group: 'com.haulmont.thirdparty', name: 'glazedlists', version: '1.9.20110801')
compile(group: 'org.swinglabs', name: 'swingx-core', version: '1.6.2-2') compile(group: 'org.swinglabs', name: 'swingx-core', version: '1.6.2-2')
runtime(group: 'org.springframework', name: 'spring-tx', version: '3.0.5.RELEASE')
assemble.dependsOn = [ classes ] assemble.dependsOn = [ classes ]
} }