Skip to content

Commit

Permalink
Fixes Gradle configuration for local dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lukbukkit committed Oct 7, 2024
1 parent 057b49f commit db37a35
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DiscordBeam/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ java {
}

dependencies {
implementation(project(":ShareBase"))
implementation("com.squareup.okhttp3:okhttp:4.12.0")
intellijPlatform {
intellijIdeaCommunity(findProperty("idea.version").toString())
Expand All @@ -32,8 +31,9 @@ dependencies {
zipSigner()
instrumentationTools()

pluginModule(implementation(project(":ShareBase")))
localPlugin(project(":HasteIt"))
bundledPlugin("org.jetbrains.plugins.github")
pluginModule(implementation(project(":HasteIt")))
}
}

Expand Down
3 changes: 2 additions & 1 deletion HasteIt/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,14 @@ java {
dependencies {
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.2")
implementation(project(":ShareBase"))
intellijPlatform {
intellijIdeaCommunity(findProperty("idea.version").toString())

pluginVerifier()
zipSigner()
instrumentationTools()

pluginModule(implementation(project(":ShareBase")))
}
}

Expand Down

0 comments on commit db37a35

Please sign in to comment.