-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathbuild.gradle
More file actions
94 lines (72 loc) · 2.89 KB
/
build.gradle
File metadata and controls
94 lines (72 loc) · 2.89 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
allprojects {
ext {
querydslVersion = "5.0.0"
tokenVersion = "3.0.0"
}
repositories {
mavenLocal()
maven { url 'https://maven.aliyun.com/repository/public/' }
maven { url 'https://jitpack.io' }
mavenCentral()
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
}
subprojects {
group 'com.wallet'
version "$tokenVersion"
apply plugin: 'java'
apply plugin: 'kotlin'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
apply plugin: "io.spring.dependency-management"
sourceCompatibility = 17
compileKotlin {
kotlinOptions.jvmTarget = "17"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "17"
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3"
implementation "org.springframework.boot:spring-boot-starter-web:$springBootVersion"
implementation "org.springframework.boot:spring-boot-starter-cache:$springBootVersion"
implementation "org.springframework.boot:spring-boot-starter-data-jpa:$springBootVersion"
implementation 'com.zaxxer:HikariCP:5.0.1'
implementation 'com.mysql:mysql-connector-j:8.2.0'
implementation 'org.apache.commons:commons-lang3:3.14.0'
compileOnly 'org.projectlombok:lombok:1.18.30'
annotationProcessor 'org.projectlombok:lombok:1.18.30'
implementation 'commons-beanutils:commons-beanutils:1.9.4'
implementation 'org.web3j:core:4.10.3'
implementation 'wf.bitcoin:bitcoin-rpc-client:1.2.4'
implementation "org.springframework.boot:spring-boot-starter-amqp:$springBootVersion"
implementation 'com.github.ben-manes.caffeine:caffeine:3.1.8'
implementation 'com.github.sealedtx:bitcoin-cash-converter:1.0'
implementation 'com.xuxueli:xxl-job-core:2.4.0'
implementation 'com.github.GalaxySciTech:tokencore:1.3.0'
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.3.0'
testImplementation "org.springframework.boot:spring-boot-starter-test:$springBootVersion"
}
}
buildscript {
ext.kotlinVersion = '1.9.10'
ext.springBootVersion = '3.1.3'
repositories {
maven { url 'https://maven.aliyun.com/repository/public/' }
mavenLocal()
mavenCentral()
}
dependencies {
classpath "io.spring.gradle:dependency-management-plugin:1.1.4"
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}