We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31b94af commit ee37169Copy full SHA for ee37169
build.gradle.kts
@@ -6,7 +6,7 @@ plugins {
6
}
7
8
group = "dev.arbjerg"
9
-version = "1.0.8"
+version = "1.0.9"
10
11
repositories {
12
mavenCentral()
src/main/kotlin/tasks/DownloadLavalinkTask.kt
@@ -37,7 +37,7 @@ abstract class DownloadLavalinkTask : DefaultTask() {
37
val configuration = project.configurations.detachedConfiguration(dependency)
38
.markResolvable()
39
40
- val archive = configuration.resolve().single {
+ val archive = configuration.resolve().first {
41
it.name.endsWith(".jar")
42
&& "plain" !in it.name && "sources" !in it.name && "javadoc" !in it.name
43
0 commit comments