ClaptrapBot/build.gradle

90 lines
2.5 KiB
Groovy
Raw Normal View History

2020-04-12 13:44:08 +02:00
plugins {
id 'org.springframework.boot' version '2.4.4'
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"
sourceCompatibility = 1.8
targetCompatibility = 1.8
2018-03-01 12:45:04 +01:00
jar.doFirst {
delete "${buildDir}/libs/*"
}
jar {
2020-04-12 13:44:08 +02:00
// delete "${buildDir}/libs/*"
2020-04-12 17:20:46 +02:00
// baseName = 'DiscordBot'
2018-03-01 12:10:30 +01:00
}
repositories {
mavenCentral()
jcenter()
}
2018-02-28 19:06:09 +01:00
javadoc {
source = sourceSets.main.allJava
classpath = configurations.compile
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web"){
exclude group:"org.springframework.boot", module: "spring-boot-starter-logging"
2018-12-04 19:00:20 +01:00
exclude group: "org.springframework.boot", module :"spring-boot-starter-tomcat"
}
2018-12-04 19:00:20 +01:00
compile("org.springframework.boot:spring-boot-starter-undertow")
compile("org.springframework.boot:spring-boot-starter-log4j2")
implementation 'org.codehaus.groovy:groovy-all:3.0.7'
2020-04-12 13:44:08 +02:00
2018-12-04 19:00:20 +01:00
compile("com.sedmelluq:lavaplayer:1.3.73")
compile 'net.dv8tion:JDA:4.2.0_247'
compile group: 'org.json', name: 'json', version: '20210307'
compile 'org.springframework.security:spring-security-web:5.4.5'
// JPA Data (We are going to use Repositories, Entities, Hibernate, etc...)
compile("org.springframework.boot:spring-boot-starter-data-jpa") {
exclude group:"org.springframework.boot", module: "spring-boot-starter-logging"
}
// Use MySQL Connector-J
compile 'mysql:mysql-connector-java'
compile 'org.reflections:reflections:0.9.12'
compile 'org.apache.commons:commons-lang3:3.12.0'
compile 'com.google.api-client:google-api-client:1.31.3'
2021-02-17 13:37:55 +01:00
compile 'com.google.apis:google-api-services-youtube:v3-rev20210210-1.31.0'
2018-01-12 12:50:12 +01:00
compile group: 'org.jsoup', name: 'jsoup', version: '1.13.1'
2019-09-16 12:19:35 +02:00
testCompile('org.springframework.boot:spring-boot-starter-test')
testCompile('com.jayway.jsonpath:json-path')
2018-12-04 19:00:20 +01:00
2017-12-22 19:20:26 +01:00
compile("org.springframework.boot:spring-boot-starter-thymeleaf") {
exclude group:"org.springframework.boot", module: "spring-boot-starter-logging"
}
}
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") ?:
2018-03-01 12:10:30 +01:00
System.getenv("GIT_COMMIT")?.substring(0, 7) ?: System.getProperty("GIT_COMMIT")?.substring(0, 7) ?:"DEV"
}
String toString() {
"${major}.${minor}.${revision}_$build"
}
2020-07-24 17:24:35 +02:00
}