-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
31 lines (26 loc) · 980 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.1.4'
id 'io.spring.dependency-management' version '1.1.3'
}
group = 'net.phoenix'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
repositories {
mavenCentral()
maven { url 'https://repo.hypixel.net/repository/Hypixel/' }
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.2'
implementation 'net.hypixel:hypixel-api-transport-apache:4.3'
implementation group: 'org.postgresql', name: 'postgresql', version: '42.5.1'
compileOnly 'jakarta.servlet:jakarta.servlet-api:6.0.0'
implementation 'org.java-websocket:Java-WebSocket:1.5.4'
implementation("net.dv8tion:JDA:5.0.0-beta.15")
implementation files('build/libs/interactionAPI.jar')
}