Skip to content

Commit

Permalink
fix: Fixed build error
Browse files Browse the repository at this point in the history
  • Loading branch information
4drian3d committed May 30, 2023
1 parent 3dd6d96 commit 0d8caf3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ plugins {
}

dependencies {
implementation(projects.exampleExpansionVelocity)
implementation(projects.exampleExpansionPaper)
implementation(projects.viaversionExpansionVelocity)
implementation(projects.viaversionExpansionPaper)
}

subprojects {
Expand Down
6 changes: 3 additions & 3 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")

rootProject.name = "Example-Expansion"
rootProject.name = "ViaVersion-Expansion"

plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.5.0"
}

arrayOf("common", "paper", "velocity").forEach {
include("example-expansion-$it")
include("viaversion-expansion-$it")

project(":example-expansion-$it").projectDir = file(it)
project(":viaversion-expansion-$it").projectDir = file(it)
}

0 comments on commit 0d8caf3

Please sign in to comment.