Document Management - manual installation
This guide assumes you have not used GenX to add the Document Management component. You should only add components manually if your project is on an older framework version that does not support GenX Add.
Manual installation
To manually add the Document Management component to your project, you must add some dependencies to your server and client packages.
- Add
fileServerVersion
to the file server/gradle.properties:
fileServerVersion=x.y.z
- Then add the following dependency to the server/settings.gradle.kts file in your project:
genesis {
projectType = ProjectType.APPLICATION
...
dependencies {
...
dependency(“global.genesis:file-server:<version>“)
...
}
}