Skip to content

Commit

Permalink
Changed publication
Browse files Browse the repository at this point in the history
  • Loading branch information
WillFP committed Oct 2, 2021
1 parent d21865e commit b61f8cc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
8 changes: 0 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -84,14 +84,6 @@ jar {
archiveFileName = findProperty("plugin-name") + " v" + findProperty("version") + ".jar"
}

publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}

group = 'com.willfp'
archivesBaseName = project.name
version = findProperty("version")
Expand Down
10 changes: 10 additions & 0 deletions eco-core/core-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,14 @@ version rootProject.version
dependencies {
compileOnly 'io.papermc.paper:paper-api:1.17.1-R0.1-SNAPSHOT'
compileOnly 'com.github.MilkBowl:VaultAPI:1.7'
}

build.dependsOn publishToMavenLocal

publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}

0 comments on commit b61f8cc

Please sign in to comment.