This is an automated email from the ASF dual-hosted git repository.
ilgrosso pushed a commit to branch 3_0_X
in repository https://gitbox.apache.org/repos/asf/syncope.git
The following commit(s) were added to refs/heads/3_0_X by this push:
new 2af795f4a0 Explicit configuration to override static resources for
Console and Enduser under classpath:/syncope/static as WA already does
2af795f4a0 is described below
commit 2af795f4a0ec9b2ece41dcfcd2b2cd92177c6a5e
Author: Francesco Chicchiriccò <[email protected]>
AuthorDate: Thu Feb 16 09:34:50 2023 +0100
Explicit configuration to override static resources for Console and Enduser
under classpath:/syncope/static as WA already does
---
client/idrepo/console/src/main/resources/console.properties | 2 ++
client/idrepo/enduser/src/main/resources/enduser.properties | 2 ++
pom.xml | 2 +-
3 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/client/idrepo/console/src/main/resources/console.properties
b/client/idrepo/console/src/main/resources/console.properties
index 33f4ac2f2f..6f32bca9d4 100644
--- a/client/idrepo/console/src/main/resources/console.properties
+++ b/client/idrepo/console/src/main/resources/console.properties
@@ -25,6 +25,8 @@ server.servlet.encoding.force=true
server.servlet.contextPath=/syncope-console
+spring.web.resources.static-locations=classpath:/syncope/static,classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/
+
management.endpoints.web.exposure.include=info,health,loggers
management.endpoint.health.show-details=ALWAYS
diff --git a/client/idrepo/enduser/src/main/resources/enduser.properties
b/client/idrepo/enduser/src/main/resources/enduser.properties
index fd8e1d6a0b..619fc64f97 100644
--- a/client/idrepo/enduser/src/main/resources/enduser.properties
+++ b/client/idrepo/enduser/src/main/resources/enduser.properties
@@ -25,6 +25,8 @@ server.servlet.encoding.force=true
server.servlet.contextPath=/syncope-enduser
+spring.web.resources.static-locations=classpath:/syncope/static,classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/
+
management.endpoints.web.exposure.include=info,health,loggers
management.endpoint.health.show-details=ALWAYS
diff --git a/pom.xml b/pom.xml
index 6601ba9aab..7d48ece172 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1540,7 +1540,7 @@ under the License.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
- <version>3.4.1</version>
+ <version>3.5.0</version>
<configuration>
<source>${targetJdk}</source>
</configuration>