-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (27 loc) · 733 Bytes
/
Copy pathbuild.gradle
File metadata and controls
32 lines (27 loc) · 733 Bytes
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
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.9.10'
id 'java'
}
group = 'pw.mihou'
version = '1.1.0'
description = 'Nexus is the next-generation Javacord framework that aims to create Discord bots with less code, dynamic, more simplicity and beauty.'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.javacord:javacord:3.8.0'
implementation 'org.slf4j:slf4j-api:2.0.3'
testImplementation 'org.jetbrains.kotlin:kotlin-test'
compileOnly 'com.google.code.findbugs:jsr305:3.0.2'
}
test {
useJUnitPlatform()
}
kotlin {
jvmToolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
compilerOptions {
freeCompilerArgs.add('-Xjvm-default=all')
}
}