-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
27 lines (22 loc) · 764 Bytes
/
build.gradle
File metadata and controls
27 lines (22 loc) · 764 Bytes
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
apply from: 'http://plugins.jasoft.fi/vaadin-groovy.plugin?version=0.10.6'
apply plugin: 'eclipse-wtp'
apply plugin: 'idea'
sourceCompatibility = '1.8'
repositories {
jcenter()
}
dependencies {
// remember to update the Vaadin version below if this version is changed
compile 'uk.q3c.krail:krail-jpa:0.9.3'
}
vaadin {
version = '7.6.2' // see issue https://github.com/davidsowerby/krail/issues/528
widgetset 'com.example.tutorial.widgetset.tutorialWidgetset'
plugin.logToConsole = true
}
configurations.all {
resolutionStrategy {
// GWT requires an old version of the validation API. Changing to a newer version breaks widgetset compile but throws no errors
force 'javax.validation:validation-api:1.0.0.GA'
}
}