ClaptrapBot/build.gradle

73 lines
2.3 KiB
Groovy
Raw Normal View History

2020-04-12 13:44:08 +02:00
plugins {
2022-05-13 17:54:56 +02:00
id 'org.springframework.boot' version '2.6.7'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
2020-04-12 13:44:08 +02:00
id 'java'
id 'groovy'
}
2018-03-01 12:10:30 +01:00
def versionObj = new Version(major: 0, minor: 2, revision: 0)
group = "net.broken"
2020-04-12 17:20:46 +02:00
archivesBaseName = "ClaptrapBot"
2018-03-01 12:10:30 +01:00
version = "$versionObj"
2022-05-13 17:54:56 +02:00
sourceCompatibility = '17'
2018-03-01 12:10:30 +01:00
repositories {
mavenCentral()
2021-04-29 19:03:47 +02:00
maven {
url 'https://m2.dv8tion.net/releases'
}
}
2022-05-15 18:39:46 +02:00
jar {
2022-05-15 16:49:55 +02:00
enabled(false)
}
dependencies {
2022-05-15 18:39:46 +02:00
implementation("org.springframework.boot:spring-boot-starter-web") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging"
}
2022-05-13 17:54:56 +02:00
implementation("org.springframework.boot:spring-boot-starter-log4j2")
implementation 'org.codehaus.groovy:groovy-all:3.0.8'
2020-04-12 13:44:08 +02:00
implementation 'com.sedmelluq:lavaplayer:1.3.77'
2022-05-13 17:54:56 +02:00
implementation 'net.dv8tion:JDA:4.4.0_350'
implementation group: 'org.json', name: 'json', version: '20210307'
implementation 'org.springframework.security:spring-security-web:5.5.0'
// JPA Data (We are going to use Repositories, Entities, Hibernate, etc...)
2022-05-13 17:54:56 +02:00
implementation("org.springframework.boot:spring-boot-starter-data-jpa") {
2022-05-15 18:39:46 +02:00
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging"
}
2022-01-20 21:26:32 +01:00
implementation(platform("org.apache.logging.log4j:log4j-bom:2.17.1"))
// Use MySQL Connector-J
2022-05-13 17:54:56 +02:00
implementation 'mysql:mysql-connector-java'
implementation 'org.reflections:reflections:0.9.12'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'com.google.api-client:google-api-client:1.31.5'
implementation 'com.google.apis:google-api-services-youtube:v3-rev20210410-1.31.0'
2018-01-12 12:50:12 +01:00
2022-05-13 17:54:56 +02:00
implementation group: 'org.jsoup', name: 'jsoup', version: '1.13.1'
2019-09-16 12:19:35 +02:00
2018-12-04 19:00:20 +01:00
2022-05-13 17:54:56 +02:00
implementation("org.springframework.boot:spring-boot-starter-thymeleaf") {
2022-05-15 18:39:46 +02:00
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging"
2017-12-22 19:20:26 +01:00
}
}
2018-03-01 12:10:30 +01:00
class Version {
String major, minor, revision
static String getBuild() {
2020-04-12 17:20:46 +02:00
System.getenv("GITHUB_RUN_NUMBER") ?: System.getProperty("BUILD_NUMBER") ?:
2022-05-15 18:39:46 +02:00
System.getenv("GIT_COMMIT")?.substring(0, 7) ?: System.getProperty("GIT_COMMIT")?.substring(0, 7) ?: "DEV"
2018-03-01 12:10:30 +01:00
}
String toString() {
"${major}.${minor}.${revision}_$build"
}
2020-07-24 17:24:35 +02:00
}