forked from Moyuyanli/HuYanEconomy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
57 lines (46 loc) · 1.59 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
buildscript {
repositories {
maven{url 'https://maven.aliyun.com/repository/public'}
}
}
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.7.20'
id 'org.jetbrains.kotlin.plugin.serialization' version '1.7.20'
id 'net.mamoe.mirai-console' version '2.15.0'
}
group = 'cn.chahuyun'
version = '0.1.16'
repositories {
mavenCentral()
// maven { url 'https://maven.aliyun.com/repository/public' }
// maven { url "https://www.sonatype.org/nexus/" }
// maven { url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' }
}
allprojects {
repositories {
maven{url 'https://maven.aliyun.com/repository/public'}
}
}
dependencies {
//依赖
compileOnly "xyz.cssxsh.mirai:mirai-hibernate-plugin:2.5.1"
compileOnly "xyz.cssxsh.mirai:mirai-economy-core:1.0.6"
compileOnly "cn.chahuyun:HuYanSession:2.3.1"
//使用库
implementation "org.projectlombok:lombok:1.18.24"
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.24'
implementation 'cn.hutool:hutool-all:5.8.10'
implementation 'org.apache.poi:poi-ooxml:4.1.2'
// implementation 'cglib:cglib:3.2.7'
implementation 'net.bytebuddy:byte-buddy:1.14.2'
implementation 'org.redisson:redisson:3.20.1'
implementation 'com.alibaba:fastjson:2.0.28'
implementation 'com.dtflys.forest:forest-core:1.5.36'
//测试库
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.0'
implementation 'org.apache.commons:commons-lang3:3.8.1'
}
// hibernate 6 和 HikariCP 5 需要 jdk11
mirai {
jvmTarget = JavaVersion.VERSION_11
}