This repository has been archived by the owner on Jan 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
73 lines (57 loc) · 2.31 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
68
69
70
71
72
73
buildscript {
ext {
springBootVersion = '2.3.1.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
plugins {
id 'org.springframework.boot' version '2.3.1.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
id 'war'
}
group = 'com.librarystore'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
repositories {
mavenCentral()
maven {
url 'http://repository.primefaces.org'
}
}
ext['hibernate.version'] = '5.4.18.Final'
configurations {
compile.exclude module: 'spring-boot-starter-tomcat'
}
dependencies {
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa'
implementation group: 'org.springframework.boot', name:'spring-boot-starter-security'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-aop'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-actuator'
compile group: 'com.google.guava', name: 'guava', version: '29.0-jre'
compile group: 'org.projectlombok', name: 'lombok', version: '1.18.12'
annotationProcessor group: 'org.projectlombok', name:'lombok', version:'1.18.6'
compile group: 'mysql', name: 'mysql-connector-java', version: '8.0.20'
providedCompile group: 'javax', name: 'javaee-api', version: '8.0.1'
// front end
implementation group: 'org.primefaces', name: 'primefaces', version: '6.0'
implementation group: 'javax.el', name: 'javax.el-api', version: '3.0.0'
implementation group: 'org.omnifaces', name: 'omnifaces', version: '2.5.1'
implementation group: 'net.bootsfaces', name: 'bootsfaces', version:'1.0.0'
implementation group: 'commons-io', name: 'commons-io', version: '2.7'
implementation group: 'commons-fileupload', name: 'commons-fileupload', version: '1.4'
implementation group: 'org.primefaces.themes', name: 'bootstrap', version: '1.0.10'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
test {
useJUnitPlatform()
}