> For the complete documentation index, see [llms.txt](https://docs.valtimo.nl/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.valtimo.nl/fundamentals/getting-started/modules/core/valtimo-dependencies.md).

# Valtimo dependencies

## Dependencies

In order to create an implementation, the Valtimo dependencies module can be added as a dependency. This includes the most common modules that are used by Valtimo implementations. The following can be added to your project, depending on whether Maven or Gradle is used:

### Backend

The samples below assume the [valtimo-dependency-versions](/fundamentals/getting-started/modules/core/valtimo-dependency-versions.md) module is used. If not, please specify the artifact version as well.

#### Maven dependency:

```xml
<dependencies>
    <dependency>
        <groupId>com.ritense.valtimo</groupId>
        <artifactId>valtimo-dependencies</artifactId>
    </dependency>
</dependencies>

```

#### Gradle dependency:

```kotlin
dependencies {
  implementation("com.ritense.valtimo:valtimo-dependencies")
}
```

## Configuration

Please check the individual pages of the individual dependencies for any required configuration:

* [Audit](/fundamentals/getting-started/modules/core/audit.md)
* [Authorization](/fundamentals/getting-started/modules/core/authorization.md)
* [Case](/fundamentals/getting-started/modules/core/case.md)
* Changelog
* [Contract](/fundamentals/getting-started/modules/core/contract.md)
* [Core](/fundamentals/getting-started/modules/core/core.md)
* [Dashboard](/fundamentals/getting-started/modules/core/dashboard.md)
* Data provider
* [Exporter](/fundamentals/getting-started/modules/core/exporter.md)
* [Form](/fundamentals/getting-started/modules/core/form.md)
* [Form flow](/fundamentals/getting-started/modules/core/form-flow.md)
* [Form flow Valtimo](/fundamentals/getting-started/modules/core/form-flow-valtimo.md)
* [Importer](/fundamentals/getting-started/modules/core/importer.md)
* Keycloak IAM
* [Localization](/fundamentals/getting-started/modules/core/localization.md)
* Notes
* [Plugins](/fundamentals/getting-started/modules/core/plugin.md)
* [Plugin Valtimo](/fundamentals/getting-started/modules/core/plugin.md)
* [Process document](/fundamentals/getting-started/modules/core/process-document.md)
* Process link
* [Resource](/fundamentals/getting-started/modules/core/resource.md)
* Search
* [Team](/fundamentals/getting-started/modules/core/team.md)
* [Temporary resource storage](/fundamentals/getting-started/modules/core/temporary-resource-storage.md)
* [Value resolver](/fundamentals/getting-started/modules/core/value-resolver.md)
* [Web](/fundamentals/getting-started/modules/core/web.md)
