44 lines
1.0 KiB
Groovy
44 lines
1.0 KiB
Groovy
/*
|
|
* Copyright (c) 2021 Aleksei Gryczewski
|
|
*/
|
|
|
|
plugins {
|
|
id 'org.springframework.boot' version '2.5.4'
|
|
id 'application'
|
|
}
|
|
|
|
jar {
|
|
enabled = false
|
|
}
|
|
|
|
apply plugin: 'io.spring.dependency-management'
|
|
|
|
group 'dev.salmonllama'
|
|
version '2.1.1'
|
|
|
|
sourceCompatibility = 16
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url 'https://jitpack.io'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation("net.dv8tion:JDA:6.0.0")
|
|
implementation 'org.xerial:sqlite-jdbc:3.41.2.2'
|
|
implementation 'com.vdurmont:emoji-java:5.1.1'
|
|
implementation 'com.squareup.okhttp3:okhttp:4.9.2'
|
|
implementation 'ch.qos.logback:logback-classic:1.5.13'
|
|
implementation 'com.google.code.gson:gson:2.8.9'
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-actuator:2.5.4'
|
|
implementation 'org.springframework.boot:spring-boot-starter-web:2.5.4'
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.5.4'
|
|
|
|
testImplementation group: 'junit', name: 'junit', version: '4.13.1'
|
|
}
|
|
|
|
mainClassName = 'dev.salmonllama.fsbot.Main'
|