Skip to content

Commit 08b1750

Browse files
committed
Version 1.3.76, new Gradle, use gradle.kts
1 parent d040239 commit 08b1750

24 files changed

+314
-313
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## [1.3.76] -- 2021-04-05
4+
### Fixed
5+
- Fixed using natives dependency which may have had outdated files in the new repository.
6+
37
## [1.3.75] -- 2021-04-02
48
### Fixed
59
- Fix loading Youtube playlists not working due to non-error alerts.

build.gradle

Lines changed: 0 additions & 37 deletions
This file was deleted.

build.gradle.kts

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
plugins {
2+
java
3+
`maven-publish`
4+
}
5+
6+
group = "com.sedmelluq"
7+
8+
allprojects {
9+
group = rootProject.group
10+
11+
repositories {
12+
mavenLocal()
13+
mavenCentral()
14+
maven(url = "https://m2.dv8tion.net/releases")
15+
}
16+
17+
apply(plugin = "java")
18+
apply(plugin = "maven-publish")
19+
20+
java {
21+
sourceCompatibility = JavaVersion.VERSION_1_8
22+
targetCompatibility = JavaVersion.VERSION_1_8
23+
}
24+
25+
publishing {
26+
repositories {
27+
maven {
28+
setUrl("s3://m2.dv8tion.net/releases")
29+
credentials(AwsCredentials::class) {
30+
accessKey = project.findProperty("sedmelluqMavenS3AccessKey")?.toString()
31+
secretKey = project.findProperty("sedmelluqMavenS3SecretKey")?.toString()
32+
}
33+
}
34+
}
35+
}
36+
}

common/build.gradle

Lines changed: 0 additions & 32 deletions
This file was deleted.

common/build.gradle.kts

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
plugins {
2+
`java-library`
3+
`maven-publish`
4+
}
5+
6+
val moduleName = "lava-common"
7+
version = "1.1.2"
8+
9+
dependencies {
10+
implementation("org.slf4j:slf4j-api:1.7.25")
11+
implementation("commons-io:commons-io:2.6")
12+
}
13+
14+
val sourcesJar by tasks.registering(Jar::class) {
15+
archiveClassifier.set("sources")
16+
from(sourceSets["main"].allSource)
17+
}
18+
19+
publishing {
20+
publications {
21+
create<MavenPublication>("mavenJava") {
22+
from(components["java"])
23+
artifactId = moduleName
24+
artifact(sourcesJar)
25+
}
26+
}
27+
}

extensions/format-xm/build.gradle

Lines changed: 0 additions & 35 deletions
This file was deleted.

extensions/format-xm/build.gradle.kts

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
plugins {
2+
`java-library`
3+
`maven-publish`
4+
}
5+
6+
val moduleName = "lavaplayer-ext-format-xm"
7+
version = "0.1.0"
8+
9+
repositories {
10+
maven(url = "https://dl.bintray.com/gabixdev/kyoko")
11+
}
12+
13+
dependencies {
14+
compileOnly(project(":main"))
15+
implementation("com.github.micromod:ibxm:a73")
16+
}
17+
18+
val sourcesJar by tasks.registering(Jar::class) {
19+
archiveClassifier.set("sources")
20+
from(sourceSets["main"].allSource)
21+
}
22+
23+
publishing {
24+
publications {
25+
create<MavenPublication>("mavenJava") {
26+
from(components["java"])
27+
artifactId = moduleName
28+
artifact(sourcesJar)
29+
}
30+
}
31+
}

extensions/youtube-rotator/build.gradle

Lines changed: 0 additions & 30 deletions
This file was deleted.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
plugins {
2+
`java-library`
3+
`maven-publish`
4+
}
5+
6+
val moduleName = "lavaplayer-ext-youtube-rotator"
7+
version = "0.2.3"
8+
9+
dependencies {
10+
compileOnly(project(":main"))
11+
}
12+
13+
val sourcesJar by tasks.registering(Jar::class) {
14+
archiveClassifier.set("sources")
15+
from(sourceSets["main"].allSource)
16+
}
17+
18+
publishing {
19+
publications {
20+
create<MavenPublication>("mavenJava") {
21+
from(components["java"])
22+
artifactId = moduleName
23+
artifact(sourcesJar)
24+
}
25+
}
26+
}

gradle/wrapper/gradle-wrapper.jar

4.32 KB
Binary file not shown.

0 commit comments

Comments
 (0)