-
Notifications
You must be signed in to change notification settings - Fork 21
/
build.gradle
41 lines (34 loc) · 1.14 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
buildscript {
repositories {
maven { url "http://repo.spring.io/libs-release" }
mavenLocal()
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.1.4.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'spring-boot'
repositories {
mavenLocal()
mavenCentral()
maven { url "http://repo.spring.io/libs-release" }
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
compile group: "org.primefaces", name: "primefaces", version: "5.0"
compile group: "com.sun.faces", name: "jsf-api", version: "2.2.7"
compile group: "com.sun.faces", name: "jsf-impl", version: "2.2.7"
compile group: 'javax.el', name: 'el-api', version: '1.0'
compile "org.glassfish.web:el-impl:2.2"
compile "org.apache.tomcat.embed:tomcat-embed-core:8.0.9"
compile "org.apache.tomcat.embed:tomcat-embed-logging-juli:7.0.54"
compile "org.apache.tomcat.embed:tomcat-embed-jasper:7.0.54"
testCompile("junit:junit")
}
task wrapper(type: Wrapper) {
gradleVersion = '1.11'
}