Skip to content

Commit

Permalink
readd archivesBaseName
Browse files Browse the repository at this point in the history
  • Loading branch information
topi314 committed Apr 30, 2023
1 parent e387752 commit de7b175
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion main/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ plugins {
id "java-library"
}

archivesBaseName = "lavasrc"

dependencies {
compileOnly "com.github.walkyst:lavaplayer-fork:1.3.98.4"
implementation "org.jsoup:jsoup:1.14.3"
Expand All @@ -12,7 +14,7 @@ publishing {
publications {
maven(MavenPublication) {
pom {
artifactId "lavasrc"
artifactId archivesBaseName

from components.java
}
Expand Down
3 changes: 2 additions & 1 deletion plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ plugins {
}

mainClassName = "org.springframework.boot.loader.JarLauncher"
archivesBaseName = "lavasrc-plugin"

dependencies {
compileOnly("dev.arbjerg.lavalink:plugin-api:3.6.1")
Expand All @@ -28,7 +29,7 @@ publishing {
publications {
maven(MavenPublication) {
pom {
artifactId "lavasrc-plugin"
artifactId archivesBaseName

from components.java
}
Expand Down

0 comments on commit de7b175

Please sign in to comment.