Skip to content

Commit

Permalink
fix: tests build failures
Browse files Browse the repository at this point in the history
Add missing dependency on API.
  • Loading branch information
diogotcorreia committed Jun 25, 2024
1 parent 2dca1d3 commit 725a6e5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ test {
}

dependencies {
compileOnly project(path: ":api")
compileOnly project(":api")

// Adventure / MiniMessage
// TODO check which of these should be compileOnly or implementation
Expand Down Expand Up @@ -41,6 +41,8 @@ dependencies {
implementation 'net.byteflux:libby-core:1.3.0'

// Test dependencies
testImplementation project(":api")

testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'

Expand Down

0 comments on commit 725a6e5

Please sign in to comment.