-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy pathbuild.gradle
80 lines (72 loc) · 3.26 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
plugins {
id "io.spring.dependency-management" version "1.0.11.RELEASE"
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
subprojects {
group "com.github.tangyi"
version = '0.0.15'
apply plugin: 'java'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'java-library'
repositories {
mavenLocal()
maven { url aliyunPublicRepository }
maven { url aliyunGoogleRepository }
maven { url aliyunJcenterRepository }
maven { url springSnapshotRepository }
maven { url springMilestoneRepository }
mavenCentral()
}
dependencyManagement {
imports {
mavenBom("org.springframework.boot:spring-boot-dependencies:2.7.1")
}
}
dependencies {
implementation 'org.apache.commons:commons-lang3'
implementation 'org.apache.commons:commons-collections4:4.1'
implementation 'commons-io:commons-io:2.6'
implementation 'commons-beanutils:commons-beanutils:1.9.2'
implementation 'cn.hutool:hutool-all:4.5.0'
implementation 'javax.servlet:javax.servlet-api:4.0.1'
implementation 'com.fasterxml.jackson.module:jackson-module-parameter-names:2.13.3'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.13.3'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3'
implementation 'com.github.pagehelper:pagehelper-spring-boot-starter:1.4.2'
implementation 'org.hibernate:hibernate-validator:6.2.3.Final'
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'com.github.ulisesbocchio:jasypt-spring-boot-starter:1.18'
implementation 'org.hibernate.validator:hibernate-validator:6.2.3.Final'
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
implementation 'org.json:json:20140107'
implementation 'com.alibaba:easyexcel:3.3.2'
implementation 'com.google.guava:guava:28.2-jre'
implementation 'com.google.zxing:core:3.4.0'
implementation 'com.google.zxing:javase:3.4.0'
implementation 'org.springdoc:springdoc-openapi-ui:1.6.8'
implementation 'com.github.axet:kaptcha:0.0.9'
implementation 'com.qiniu:qiniu-java-sdk:7.13.1'
implementation 'org.apache.lucene:lucene-core:8.9.0'
implementation 'org.apache.lucene:lucene-analyzers-common:8.9.0'
implementation 'com.jianggujin:IKAnalyzer-lucene:8.0.0'
compileOnly 'org.projectlombok:lombok:1.18.24'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
implementation 'com.wix:wix-embedded-mysql:4.6.1'
implementation 'it.unimi.dsi:fastutil:8.5.6'
testImplementation 'junit:junit:4.13.2'
testImplementation 'uk.org.webcompere:system-stubs-jupiter:2.0.2'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'com.github.stefanbirkner:system-rules:1.19.0'
}
compileJava {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
test {
useJUnitPlatform()
}
}