-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
executable file
·72 lines (66 loc) · 2.6 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
plugins {
id 'org.springframework.boot' version '2.2.7.RELEASE'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'java'
}
group = 'com.lmy.gradle'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
maven { url = 'http://maven.aliyun.com/nexus/content/groups/public/' }
maven { url = 'http://maven.aliyun.com/nexus/content/repositories/jcenter' }
maven {
credentials {
username 'q0TTxw'
password 'SnMSWAl68N'
}
url 'https://repo.rdc.aliyun.com/repository/14671-release-Wx8nOv/'
}
maven {
credentials {
username 'q0TTxw'
password 'SnMSWAl68N'
}
url 'https://repo.rdc.aliyun.com/repository/14671-snapshot-nK3hRe/'
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation "redis.clients:jedis:2.9.0"
// fastjson
implementation 'com.alibaba:fastjson:1.2.70'
implementation "org.springframework.boot:spring-boot-starter-data-redis"
// apache common lang
implementation "commons-lang:commons-lang:2.6"
implementation 'org.springframework.boot:spring-boot-starter-freemarker'
//implementation 'io.github.lvyahui8:spring-boot-data-aggregator-starter:1.0.0'
implementation 'javax.servlet:jstl'
implementation 'org.aspectj:aspectjrt:1.9.1'
implementation 'com.github.binarywang:weixin-java-mp:3.6.0'
implementation 'junit:junit:4.13.1'
compileOnly 'org.projectlombok:lombok'
// developmentOnly 'org.springframework.boot:spring-boot-devtools'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
annotationProcessor 'org.projectlombok:lombok'
implementation 'commons-dbutils:commons-dbutils:1.7'
implementation 'com.alibaba.otter:canal.client:1.1.4'
annotationProcessor 'junit:junit:4.12'
implementation 'com.baomidou:mybatis-plus-generator:3.3.2'
implementation 'org.apache.rocketmq:rocketmq-spring-boot-starter:2.2.0'
runtimeOnly 'mysql:mysql-connector-java'
implementation "com.alibaba:druid-spring-boot-starter:1.1.10"
compile 'com.baomidou:mybatis-plus-boot-starter:3.5.0'
// compile group: 'com.baomidou', name: 'mybatis-plus', version: 'mybatis-plus-latest-version'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
test {
useJUnitPlatform()
}