Merge pull request #20 from oskar3123/16-update-to-kotlin-gradle-dls

#16: Update gradle scripts to Kotlin
This commit is contained in:
2023-09-25 19:58:22 +02:00
committed by GitHub
4 changed files with 47 additions and 41 deletions
-40
View File
@@ -1,40 +0,0 @@
plugins {
id 'java'
}
group = 'me.oskar3123'
version = 'SNAPSHOT'
repositories {
mavenCentral()
maven {
url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
}
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
maven {
url 'https://repo.extendedclip.com/content/repositories/placeholderapi/'
}
maven {
name 'm2-dv8tion'
url 'https://m2.dv8tion.net/releases'
}
maven {
url 'https://nexus.scarsz.me/content/groups/public/'
}
}
dependencies {
implementation 'org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT'
implementation 'net.md-5:bungeecord-api:1.20-R0.2-SNAPSHOT'
implementation 'me.clip:placeholderapi:2.11.1'
implementation 'com.discordsrv:discordsrv:1.25.1'
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}
+46
View File
@@ -0,0 +1,46 @@
plugins {
id("java")
}
group = "me.oskar3123"
version = "SNAPSHOT"
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(8))
}
}
repositories {
mavenCentral()
maven {
url = uri("https://hub.spigotmc.org/nexus/content/repositories/snapshots/")
}
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
}
maven {
url = uri("https://repo.extendedclip.com/content/repositories/placeholderapi/")
}
maven {
name = "m2-dv8tion"
url = uri("https://m2.dv8tion.net/releases")
}
maven {
url = uri("https://nexus.scarsz.me/content/groups/public/")
}
}
dependencies {
compileOnly("org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT")
compileOnly("net.md-5:bungeecord-api:1.20-R0.2-SNAPSHOT")
compileOnly("me.clip:placeholderapi:2.11.1")
compileOnly("com.discordsrv:discordsrv:1.25.1")
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter:5.10.0")
}
tasks.test {
useJUnitPlatform()
}
-1
View File
@@ -1 +0,0 @@
rootProject.name = 'StaffChat'
+1
View File
@@ -0,0 +1 @@
rootProject.name = "StaffChat"