Skip to content

Commit

Permalink
project update
Browse files Browse the repository at this point in the history
  • Loading branch information
bnasslahsen committed Jan 21, 2020
1 parent 9e31fb1 commit f0169bc
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package org.springdoc.core;

import org.springframework.util.ResourceUtils;

import static org.springframework.util.AntPathMatcher.DEFAULT_PATH_SEPARATOR;

public final class Constants {
Expand Down Expand Up @@ -30,7 +32,7 @@ public final class Constants {
public static final String SPRINGDOC_ACTUATOR_DOC_DESCRIPTION = "Spring Boot Actuator Web API Documentation";
public static final String DEFAULT_WEB_JARS_PREFIX_URL = "/webjars";
public static final String WEB_JARS_PREFIX_URL = "${springdoc.webjars.prefix:"+DEFAULT_WEB_JARS_PREFIX_URL+"}";
public static final String CLASSPATH_RESOURCE_LOCATION = "classpath:/META-INF/resources";
public static final String CLASSPATH_RESOURCE_LOCATION = ResourceUtils.CLASSPATH_URL_PREFIX + "/META-INF/resources";
public static final String SWAGGER_UI_URL = "/swagger-ui/index.html";
public static final String SWAGGER_UI_OAUTH_REDIRECT_URL = "/swagger-ui/oauth2-redirect.html";
public static final String APPLICATION_OPENAPI_YAML = "application/vnd.oai.openapi";
Expand Down

0 comments on commit f0169bc

Please sign in to comment.