-
Notifications
You must be signed in to change notification settings - Fork 83
/
build.gradle
46 lines (44 loc) · 2.05 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
apply from: '../metl-assemble/common.gradle'
version = origVersion
dependencies {
compile project(":metl-core")
compile (group:"org.jumpmind.vaadin", name:"sqlexplorer-vaadin", version:"$sqlExplorerVersion", changing:true) {
exclude group:'org.jumpmind.symmetric'
exclude group:'com.vaadin'
exclude group:'com.vaadin.addon' , module:'vaadin-context-menu'
}
compile "com.cybercom:spring-ui-scope:0.0.2"
compile "org.springframework:spring-webmvc:$springVersion"
compile (group:"org.vaadin", name:"viritin", version:"1.61") {
exclude group:'com.vaadin'
}
compile "org.apache.poi:poi:3.11"
compile "io.springfox:springfox-swagger2:$springfoxSwaggerVersion"
compile "io.springfox:springfox-swagger-ui:$springfoxSwaggerVersion"
compile "io.swagger:swagger-core:$swaggerVersion"
compile ("org.reficio:soap-builder:$reficioSoapVersion") {
exclude group:'com.googlecode.guava-osgi'
}
compile ("org.reficio:soap-common:$reficioSoapVersion") {
exclude group:'com.googlecode.guava-osgi'
}
compile ("org.reficio:soap-legacy:$reficioSoapVersion") {
exclude group:'com.googlecode.guava-osgi'
}
compile "jlibs:jlibs-xml:1.0"
provided "xerces:xercesImpl:2.9.1"
compile "com.vaadin:vaadin-server:$vaadinVersion"
compile "com.vaadin:vaadin-push:$vaadinVersion"
compile "com.vaadin:vaadin-themes:$vaadinVersion"
compile "javax.servlet:javax.servlet-api:$servletVersion"
compile "org.eclipse.jetty:jetty-servlet:$jettyVersion"
compile "com.vaadin.addon:vaadin-context-menu:0.7.4"
compile "org.vaadin.addons:aceeditor:0.8.14"
provided "javax.servlet.jsp:jsp-api:$jspVersion"
provided "javax.websocket:javax.websocket-api:$webSocketVersion"
provided group: 'javax.portlet', name: 'portlet-api', version: '2.0'
compile (group: 'com.vaadin.addon', name: 'tableexport-for-vaadin', version: '1.6.2') {
exclude group: 'org.vaadin.addons', module: 'filteringtable'
exclude group: 'org.vaadin.addons', module: 'popupbutton'
}
}