Skip to content

Commit f81737a

Browse files
Replace lava-common dependency (#12)
1 parent 5d0c876 commit f81737a

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ While this project is published to maven-central, the lavaplayer commons depende
4242
```gradle
4343
repositories {
4444
mavenCentral()
45-
jcenter()
4645
}
4746
4847
dependencies {

api/build.gradle.kts

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,15 @@ plugins {
22
`java-library`
33
`maven-publish`
44
signing
5-
// id("io.github.gradle-nexus.publish-plugin")
65
}
76

87
repositories {
98
mavenCentral()
109
}
1110

1211
dependencies {
13-
implementation("com.sedmelluq:lava-common:1.1.2")
1412
implementation("org.slf4j:slf4j-api:1.7.25")
13+
implementation("dev.arbjerg:lavaplayer:1.5.4")
1514
}
1615

1716
val javadoc: Javadoc by tasks

build.gradle.kts

+1-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ if (enablePublishing) {
3737
subprojects {
3838
repositories {
3939
mavenCentral()
40-
maven("https://jcenter.bintray.com/")
4140
}
4241

4342
apply(plugin="java")
@@ -48,7 +47,7 @@ subprojects {
4847
}
4948

5049
group = "club.minnced"
51-
version = "0.2.7"
50+
version = "0.2.8"
5251

5352
// See https://github.com/sedmelluq/lavaplayer/blob/master/common/src/main/java/com/sedmelluq/lava/common/natives/architecture/DefaultArchitectureTypes.java
5453
// identifier is the suffix used after the system name

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip
1+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStorePath=wrapper/dists

native/build.gradle.kts

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ plugins {
88
}
99

1010
dependencies {
11+
api(project(":api"))
1112
// Explicit dependency to avoid having to republish api each time
12-
api("club.minnced:udpqueue-api:0.1.1")
13+
// api("club.minnced:udpqueue-api:0.2.8")
1314
}
1415

1516
val processResources: Copy by tasks

0 commit comments

Comments
 (0)