-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
build.gradle
67 lines (57 loc) · 1.72 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java'
id 'war'
id 'maven-publish'
}
repositories {
mavenLocal()
maven {
url = 'https://maven.vaadin.com/vaadin-prereleases'
}
maven {
url = 'https://maven.vaadin.com/vaadin-addons'
}
maven {
url = 'https://oss.sonatype.org/content/repositories/vaadin-snapshots/'
}
maven {
url = 'https://repo.maven.apache.org/maven2'
}
}
dependencies {
implementation 'com.vaadin:vaadin-compatibility-server:8.0.0.alpha2'
implementation 'com.vaadin:vaadin-compatibility-shared:8.0.0.alpha2'
implementation 'com.vaadin:vaadin-compatibility-client-compiled:8.0.0.alpha2'
implementation 'com.vaadin:vaadin-themes:8.0.0.alpha2'
implementation 'javax.servlet:javax.servlet-api:3.0.1'
implementation 'commons-beanutils:commons-beanutils:1.9.2'
implementation 'log4j:log4j:1.2.9'
implementation 'org.slf4j:slf4j-api:1.7.7'
implementation 'org.slf4j:slf4j-simple:1.7.7'
implementation 'org.slf4j:slf4j-log4j12:1.7.7'
implementation 'commons-httpclient:commons-httpclient:3.1'
implementation 'org.apache.commons:commons-lang3:3.1'
implementation 'org.json:json:20140107'
implementation 'org.codehaus.jackson:jackson-jaxrs:1.9.4'
implementation 'com.sun.xml.security:xml-security-impl:1.0'
testImplementation 'junit:junit:4.7'
}
group = 'com.devopsdemo.tutorial'
// version = '2.0'
// description = 'Vaadin Sampleapp example'
sourceCompatibility = '1.8'
configurations.all {
}
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}