-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
60 lines (42 loc) · 1.77 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
plugins {
id 'java'
id 'eclipse'
id 'org.springframework.boot' version '2.2.5.RELEASE'
}
apply plugin: 'io.spring.dependency-management'
group 'com.npee'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile('org.springframework.boot:spring-boot-starter-test')
testImplementation 'org.springframework.security:spring-security-test'
testCompileOnly('org.projectlombok:lombok:1.18.12')
testAnnotationProcessor ('org.projectlombok:lombok:1.18.12')
compile('org.springframework.boot:spring-boot-starter-web:')
compile('org.springframework.boot:spring-boot-starter-data-jpa')
compile('org.springframework.boot:spring-boot-starter-freemarker')
compile('org.springframework.boot:spring-boot-devtools')
compileOnly('org.projectlombok:lombok:1.18.12')
annotationProcessor('org.projectlombok:lombok:1.18.12')
/*
<javax-persistence.version>2.2</javax-persistence.version>
<lombok.version>1.18.12</lombok.version>
<jstl.version>1.2</jstl.version>
<log4j2.version>2.12.1</log4j2.version>
<mysql.version>8.0.19</mysql.version>
*/
compile group: 'org.webjars', name: 'jquery', version: '1.12.4'
compile('pl.allegro.tech.boot:handlebars-spring-boot-starter:0.3.0')
runtime('com.h2database:h2')
runtimeOnly('mysql:mysql-connector-java')
implementation 'io.springfox:springfox-swagger2:2.6.1'
implementation 'io.springfox:springfox-swagger-ui:2.6.1'
implementation 'net.rakugakibox.util:yaml-resource-bundle:1.1'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'io.jsonwebtoken:jjwt:0.9.1'
implementation 'com.google.code.gson:gson'
}