forked from fosslight/fosslight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
135 lines (110 loc) · 6.19 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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
plugins {
id 'org.springframework.boot' version '2.6.8'
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
id 'java'
id 'war'
id 'eclipse' // optional (to generate Eclipse project files)
id 'idea' // optional (to generate IntelliJ IDEA project files)
}
group = 'oss.fosslight'
version = '1.6.0'
sourceCompatibility = '11'
configurations {
developmentOnly
runtimeClasspath {
extendsFrom developmentOnly
}
compileOnly {
extendsFrom annotationProcessor
}
compile {
exclude group: 'org.apache.logging.log4j', module: 'log4j-slf4j-impl'
}
}
repositories {
mavenCentral()
}
test {
useJUnitPlatform()
}
processResources {
filesMatching('**/application.properties') {
expand(project.properties)
}
}
bootWar.enabled = true // (1)
war.enabled = false // (2)
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-batch'
implementation 'org.springframework.boot:spring-boot-starter-cache'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-integration'
implementation 'org.springframework.boot:spring-boot-starter-mail'
implementation 'org.springframework.boot:spring-boot-starter-quartz'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.session:spring-session-core'
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
annotationProcessor 'org.projectlombok:lombok'
providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude module: 'junit'
}
testImplementation(platform('org.junit:junit-bom:5.8.0'))
testImplementation('org.junit.jupiter:junit-jupiter')
implementation group: 'javax.cache', name: 'cache-api', version: '1.1.1'
implementation group: 'org.ehcache', name: 'ehcache', version: '3.9.2'
implementation group: 'org.springframework.security', name: 'spring-security-core', version: '5.6.5'
implementation group: 'org.springframework.security', name: 'spring-security-taglibs', version: '5.6.5'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-velocity', version: '1.4.7.RELEASE'
implementation group: 'org.mybatis.spring.boot', name: 'mybatis-spring-boot-starter', version: '2.2.2'
implementation group: 'com.zaxxer', name: 'HikariCP', version: '4.0.0'
implementation group: 'org.mariadb.jdbc', name: 'mariadb-java-client', version: '2.7.2'
implementation group: 'org.postgresql', name: 'postgresql', version: '42.2.19'
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.13'
implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-jasper', version: '9.0.63'
implementation group: 'org.apache.taglibs', name: 'taglibs-standard-impl', version: '1.2.5'
implementation group: 'org.apache.tiles', name: 'tiles-jsp', version: '3.0.8'
implementation group: 'org.apache.tiles', name: 'tiles-core', version: '3.0.8'
implementation group: 'org.apache.commons', name: 'commons-csv', version: '1.8'
implementation group: 'org.apache.poi', name: 'poi', version: '4.1.2'
implementation group: 'org.apache.poi', name: 'poi-excelant', version: '4.1.2'
implementation group: 'org.apache.poi', name: 'poi-ooxml', version: '4.1.2'
implementation group: 'org.apache.poi', name: 'poi-ooxml-schemas', version: '4.1.2'
implementation group: 'org.apache.poi', name: 'poi-scratchpad', version: '4.1.2'
implementation group: 'javax.servlet', name: 'jstl', version: '1.2'
implementation group: 'commons-codec', name: 'commons-codec', version: '1.15'
implementation group: 'commons-io', name: 'commons-io', version: '2.8.0'
implementation group: 'joda-time', name: 'joda-time', version: '2.10.10'
implementation group: 'com.google.guava', name: 'guava', version: '30.1.1-jre'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.13.3'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.13.3'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.13.3'
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.13.3'
implementation group: 'org.codehaus.jackson', name: 'jackson-core-asl', version: '1.9.13'
implementation group: 'org.codehaus.jackson', name: 'jackson-mapper-asl', version: '1.9.13'
implementation group: 'org.json', name: 'json', version: '20210307'
implementation group: 'net.minidev', name: 'json-smart', version: '2.4.2'
implementation group: 'com.jcraft', name: 'jsch', version: '0.1.55'
implementation group: 'com.opencsv', name: 'opencsv', version: '4.6'
implementation group: 'org.jsoup', name: 'jsoup', version: '1.13.1'
implementation group: 'com.googlecode.juniversalchardet', name: 'juniversalchardet', version: '1.0.3'
implementation group: 'com.googlecode.java-diff-utils', name: 'diffutils', version: '1.3.0'
implementation group: 'com.monitorjbl', name: 'xlsx-streamer', version: '2.2.0'
implementation group: 'io.springfox', name: 'springfox-boot-starter', version: '3.0.0'
implementation 'io.springfox:springfox-swagger-ui:2.10.5'
implementation group: 'net.sf.sociaal', name: 'xmlpull-xpp3', version: '3.0.0.20130526'
implementation group: 'io.jsonwebtoken', name: 'jjwt-api', version: '0.11.2'
implementation group: 'org.spdx', name: 'tools-java', version: '1.0.3'
implementation group: 'com.navercorp.lucy', name: 'lucy-xss', version: '1.6.3'
implementation 'com.itextpdf:itext7-core:7.2.3'
implementation 'com.itextpdf:html2pdf:4.0.3'
runtime group: 'io.jsonwebtoken', name: 'jjwt-impl', version: '0.10.7'
runtime group: 'io.jsonwebtoken', name: 'jjwt-jackson', version: '0.10.7'
testImplementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
implementation group: 'org.springframework.ldap', name: 'spring-ldap-core', version: '2.3.8.RELEASE'
implementation files('libs/tlsh-4.6.0.jar')
}