Skip to content

Commit

Permalink
Fixes #1085
Browse files Browse the repository at this point in the history
  • Loading branch information
altro3 committed Jul 1, 2023
1 parent 1fce141 commit 29cee99
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion openapi/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
dependencies {
compileOnly(mn.micronaut.core.processor)

implementation(mn.micronaut.http.server)
implementation(mn.micronaut.http)

api(projects.micronautOpenapiAnnotations)
api(mn.jackson.databind)
Expand All @@ -22,6 +22,7 @@ dependencies {
testImplementation(mn.micronaut.management)
testImplementation(mn.micronaut.inject.groovy.test)
testImplementation(mn.micronaut.inject.java.test)
testImplementation(mn.micronaut.http.server)
testImplementation(mn.snakeyaml)
testImplementation(mnSecurity.micronaut.security)
testImplementation(mnSerde.micronaut.serde.jackson)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ public ClassPathResourceLoader getResourceLoader() {
if (classLoader == null) {
classLoader = ClassLoader.getSystemClassLoader();
}
return new DefaultClassPathResourceLoader(classLoader, null, false);
return new DefaultClassPathResourceLoader(classLoader, null, false, false);
}

@Override
Expand Down

0 comments on commit 29cee99

Please sign in to comment.