Skip to content

Commit

Permalink
cleanup gremlin usage
Browse files Browse the repository at this point in the history
  • Loading branch information
broccolai committed Oct 31, 2023
1 parent 934ab01 commit 7532cf3
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions paper/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,25 @@ repositories {
maven("https://repo.jpenilla.xyz/snapshots/")
}

fun DependencyHandler.runtimeDownloadApi(dependencyNotation: Any) {
api(dependencyNotation)
runtimeDownload(dependencyNotation)
}

dependencies {
api(project(":tags-core"))
runtimeDownload(project(":tags-core"))
runtimeDownloadApi(projects.tagsCore)

compileOnly(libs.paper.api)
compileOnly(libs.papi)
compileOnly(libs.vault)

api(libs.cloud.paper)
runtimeDownload(libs.cloud.paper)
api(libs.cloud.extras)
runtimeDownload(libs.cloud.extras)
api(libs.corn.minecraft.paper)
runtimeDownload(libs.corn.minecraft.paper)
runtimeDownloadApi(libs.cloud.paper)
runtimeDownloadApi(libs.cloud.extras)
runtimeDownloadApi(libs.corn.minecraft.paper)

api(libs.interfaces.paper)
runtimeDownload(libs.interfaces.paper)
runtimeDownloadApi(libs.interfaces.paper)

api(libs.h2)
runtimeDownload(libs.h2)
runtimeDownloadApi(libs.h2)
}

configurations.runtimeDownload {
Expand Down

0 comments on commit 7532cf3

Please sign in to comment.