-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
45 lines (33 loc) · 992 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
33
34
35
36
37
38
39
40
41
42
43
44
45
plugins {
id 'java'
}
group = 'edu.utdallas.cs.app'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
// JUnit
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
// Hibernate
implementation 'org.hibernate.orm:hibernate-core:6.2.1.Final'
implementation 'org.hibernate.orm:hibernate-spatial:6.2.1.Final'
// MySQL
implementation 'com.mysql:mysql-connector-j:8.0.32'
// OkHttp
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
// Gson
implementation 'com.google.code.gson:gson:2.10.1'
// Spring
implementation 'org.springframework.boot:spring-boot-starter-webflux:3.0.5'
// InfluxDB
implementation 'com.influxdb:influxdb-client-java:6.8.0'
// Guava
implementation 'com.google.guava:guava:31.1-jre'
// OpenWeatherMap
implementation 'com.github.prominence:openweathermap-api:2.3.0'
}
test {
useJUnitPlatform()
}