Skip to main content
Version: Current

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.

  1. Add fileServerVersion to the file server/gradle.properties:
notifyVersion=x.y.z
  1. 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>)
...
}
}