-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
122 lines (96 loc) · 5.24 KB
/
build.gradle
File metadata and controls
122 lines (96 loc) · 5.24 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
group 'com.zzanggar.study'
version '1.0.0'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
repositories {
jcenter()
}
apply plugin: 'java'
apply plugin: 'war'
jar {
baseName = 'mobx-tsc-sample'
version = '1.0.0'
manifest {
attributes 'Main-Class': 'org.zzanggar.Application'
}
}
compileJava {
options.encoding = 'UTF-8'
options.fork = true
options.forkOptions.executable = 'javac'
options.compilerArgs << '-XDignore.symbol.file'
}
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
dependencies {
// Spring boot
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web' , version: springBootVersion
// compile group: 'org.springframework.boot', name: 'spring-boot-starter-security' , version: springBootVersion
compile group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa' , version: springBootVersion
compile group: 'org.springframework.boot', name: 'spring-boot-starter-data-rest', version: springBootVersion
compile group: 'org.springframework.boot', name: 'spring-boot-starter-websocket', version: springBootVersion
compile group: 'org.springframework.boot', name: 'spring-boot-starter-actuator' , version: springBootVersion
compile group: 'org.springframework.boot', name: 'spring-boot-devtools' , version: springBootVersion
// Spring
compile group: 'org.springframework', name: 'spring-context-support', version: '5.0.6.RELEASE'
// Security
// compile group: 'org.springframework.security.oauth', name: 'spring-security-oauth2' , version: '2.3.2.RELEASE'
// compile group: 'org.springframework.security' , name: 'spring-security-jwt' , version: '1.0.9.RELEASE'
// compile group: 'org.springframework.security' , name: 'spring-security-taglibs', version: '5.0.5.RELEASE'
// compile group: 'io.jsonwebtoken' , name: 'jjwt' , version: '0.9.0'
// Servlet
compile group: 'javax.servlet', name: 'jstl', version: '1.2'
// Lombok (blogs.idincu.com/dev/?p=17)
compile group: 'org.projectlombok', name: 'lombok', version: '1.18.6'
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.6'
// Upload
compile group: 'commons-fileupload', name: 'commons-fileupload', version: '1.3.3'
// docs
compile group: 'io.springfox', name: 'springfox-swagger2' , version: swaggerVersion
compile group: 'io.springfox', name: 'springfox-swagger-ui', version: swaggerVersion
compile group: 'org.webjars' , name: 'swagger-ui' , version: '3.13.6'
// Model Mapper
compile group: 'org.modelmapper' , name: 'modelmapper' , version: modelmapperVersion
compile group: 'org.modelmapper.extensions', name: 'modelmapper-spring', version: modelmapperVersion
compile group: 'com.github.marschall' , name: 'threeten-jpa' , version: '1.10.0'
// Log
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.13.0'
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.13.0'
// Utils
compile group: 'org.apache.commons', name: 'commons-lang3' , version: '3.4'
compile group: 'org.apache.commons', name: 'commons-collections4', version: '4.1'
compile group: 'commons-io' , name: 'commons-io' , version: '2.5'
compile group: 'commons-beanutils' , name: 'commons-beanutils' , version: '1.9.3'
// Json
compile group: 'com.fasterxml.jackson.core' , name: 'jackson-core' , version: jacksonVersion
compile group: 'com.fasterxml.jackson.core' , name: 'jackson-databind' , version: jacksonVersion
compile group: 'com.fasterxml.jackson.core' , name: 'jackson-annotations', version: jacksonVersion
compile group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-csv', version: '2.9.1'
// configuration
compile group: 'org.apache.commons', name: 'commons-configuration2', version: '2.1'
// Reflections
compile 'org.reflections:reflections:0.9.11'
// RxJava
compile group: 'io.reactivex.rxjava2', name: 'rxjava', version: rxJavaVersion
// DB
compile group: 'com.h2database', name: 'h2', version: '1.4.192'
// Embed
compile group: 'org.apache.tomcat.embed', name: 'tomcat-embed-core' , version: tomcatVersion
compile group: 'org.apache.tomcat.embed', name: 'tomcat-embed-jasper', version: tomcatVersion
// // Google Speech
// compile group: 'com.google.api-client', name: 'google-api-client' , version: '1.22.0'
// compile group: 'com.google.cloud' , name: 'google-cloud-speech', version: '0.22.0-alpha'
// Excel
compile group: 'net.sf.jxls' , name: 'jxls-core' , version: '1.0.6'
compile group: 'org.jxls' , name: 'jxls' , version: '2.4.3'
compile group: 'org.jxls' , name: 'jxls-poi' , version: '1.0.14'
compile group: 'org.jxls' , name: 'jxls-jexcel' , version: '1.0.6'
compile group: 'org.apache.poi' , name: 'poi' , version: '3.17'
compile group: 'org.apache.poi' , name: 'poi-ooxml' , version: '3.17'
}