-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
61 lines (48 loc) · 1.75 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
group 'com.cookiebutter'
version '1.0-SNAPSHOT'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.4.1.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'spring-boot'
jar {
baseName = 'spring-inventory-app'
version = '1.0.0-SNAPSHOT'
}
targetCompatibility = 1.8
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile('org.springframework.boot:spring-boot-starter-actuator')
compile('org.springframework.boot:spring-boot-starter-data-jpa')
compile("org.springframework.boot:spring-boot-devtools")
compile('org.springframework.boot:spring-boot-starter-web')
//Incluyendo el módulo de seguridad.
compile group: 'org.springframework.security', name: 'spring-security-taglibs'
compile('org.springframework.boot:spring-boot-starter-security')
//Trabajando con FreeMarker...
compile('org.springframework.boot:spring-boot-starter-freemarker')
// https://mvnrepository.com/artifact/com.h2database/h2
compile 'com.h2database:h2:1.4.192'
//Trabajando con los webjars. ver http://www.webjars.org/
compile 'org.webjars:bootstrap:3.3.7-1'
compile 'org.webjars:jquery:3.1.0'
compile 'org.webjars:font-awesome:4.6.3'
compile 'org.webjars:datatables:1.10.12'
compile 'org.webjars:chartjs:2.1.3'
//Custom Dependencies
compile 'com.github.darrachequesne:spring-data-jpa-datatables:2.5'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.4'
compile group: 'javax.servlet.jsp', name: 'jsp-api', version: '2.2.1-b03'
//Prueba.
testCompile('org.springframework.boot:spring-boot-starter-test')
}