Hello,
I encountered one issue when I tried to run the WebDav demo project available by GitHub - cuba-platform/webdav-demo: This sample application demonstrates the usage of CUBA WebDAV add-on. We have subscription for CUBA, but no subscription for WebDav add-on, so I tried to run project with trial version. I did everything as in documentation.The error message I got in catalina.out is “org.xml.sax.SAXParseException: schema_reference.4: Failed to read schema document ‘http://www.springframework.org/schema/security/spring-security.xsd’, because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not xsd:schema.”
Below my gradle’s part
buildscript {
ext.cubaVersion = ‘7.1.0’
repositories {
mavenLocal()
maven {
url ‘Index of /groups/work’
credentials {
username(rootProject.hasProperty(‘repoUser’) ? rootProject[‘repoUser’] : ‘cuba’)
password(rootProject.hasProperty(‘repoPass’) ? rootProject[‘repoPass’] : ‘cuba123’)
}
}
maven {
url ‘./repository’
}
}
dependencies {
classpath "com.haulmont.gradle:cuba-plugin:$cubaVersion"
}
}