Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mvysny committed Aug 8, 2024
1 parent 5a11a10 commit 2698427
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,7 @@ spring-boot-starter-web = "org.springframework.boot:spring-boot-starter-web:2.3.
groovy = "org.codehaus.groovy:groovy:3.0.17"
junit-jupiter-api = { module = "org.junit.jupiter:junit-jupiter-api", version.ref = "junit" }
junit-jupiter-runtime = { module = "org.junit.jupiter:junit-jupiter", version.ref = "junit" }
javax-portletapi = "javax.portlet:portlet-api:3.0.1"
javax-validation = "javax.validation:validation-api:2.0.1.Final"
atmosphere = "com.vaadin.external.atmosphere:atmosphere-runtime:2.4.30.vaadin4"
gwt-user = "com.google.gwt:gwt-user:2.8.2"
6 changes: 6 additions & 0 deletions karibu-testing-v8/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ dependencies {
api(libs.fake.servlet)
implementation(libs.slf4j.api)

// these are needed to remove warnings during javadoc gradle task
compileOnly(libs.javax.portletapi)
compileOnly(libs.javax.validation)
compileOnly(libs.atmosphere)
compileOnly(libs.gwt.user)

testImplementation(libs.dynatest)
api(kotlin("test"))
testImplementation(libs.slf4j.simple)
Expand Down

0 comments on commit 2698427

Please sign in to comment.