-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
32 lines (27 loc) · 905 Bytes
/
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
plugins {
id 'java'
id 'org.springframework.boot' version '3.1.5'
id 'io.spring.dependency-management' version '1.1.3'
}
group = 'com.DefiOptionVault'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:3.0.4'
implementation 'org.springframework.boot:spring-boot-starter-jdbc:3.0.4'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf:3.0.4'
implementation 'org.springframework.boot:spring-boot-starter-web:3.1.0'
implementation 'org.apache.commons:commons-math3:3.6.1'
implementation 'org.web3j:core:4.10.0'
implementation 'com.google.firebase:firebase-admin:9.1.1'
runtimeOnly 'com.mysql:mysql-connector-j:8.0.32'
testImplementation 'org.springframework.boot:spring-boot-starter-test:3.1.0'
}
tasks.named('test') {
useJUnitPlatform()
}