Skip to content

Commit 2f1dfb8

Browse files
committed
Fix building
* Add compileOnly dep on javax inject * Bump junit
1 parent 834449b commit 2f1dfb8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ subprojects {
8787

8888
dependencies {
8989
compileOnly 'org.slf4j:slf4j-api:1.7.32'
90+
compileOnly("javax.inject:javax.inject:1")
9091
api 'com.zaxxer:HikariCP:5.0.1'
9192
api 'com.github.clubobsidian:wrappy:2.3.2'
9293
api 'org.jsoup:jsoup:1.11.3'
@@ -101,7 +102,8 @@ subprojects {
101102
api 'com.zaxxer:influx4j:2.14'
102103
api 'org.mongodb:mongodb-driver-sync:4.6.1'
103104
api 'org.openjdk.nashorn:nashorn-core:15.6'
104-
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
105-
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
105+
testImplementation(platform('org.junit:junit-bom:6.0.3'))
106+
testImplementation('org.junit.jupiter:junit-jupiter')
107+
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
106108
}
107109
}

0 commit comments

Comments
 (0)