> ## Documentation Index
> Fetch the complete documentation index at: https://docs.aseeflow.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Spring Framework Integration

The camunda-engine Spring Framework integration is located inside a maven module and can be added to apache maven-based projects through the following dependency:

<Info>
  Please import the [ASEE Flow BOM](/get-started/apache-maven) to ensure correct versions for every ASEE Flow project.
</Info>

* `camunda-engine-spring` maven module for Spring Framework 5

```xml theme={null}
<dependency>
  <groupId>org.aseeflow.bpm</groupId>
  <artifactId>aseeflow-engine-spring</artifactId>
</dependency>
```

* `camunda-engine-spring-6` maven module for Spring Framework 6.

```xml theme={null}
<dependency>
  <groupId>org.aseeflow.bpm</groupId>
  <artifactId>aseeflow-engine-spring-6</artifactId>
</dependency>
```

The process engine Spring artifact should be added as a library to the process application.
The following minimal set of Spring dependencies must be added in the desired version:

```xml theme={null}
<properties>
  <spring.version>X.Y.Z.RELEASE</spring.version>
</properties>

<dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-framework-bom</artifactId>
      <version>${spring.version}</version>
      <type>pom</type>
      <scope>import</scope>
    </dependency>
  </dependencies>
</dependencyManagement>

<dependencies>
  <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context</artifactId>
  </dependency>
  <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-jdbc</artifactId>
  </dependency>
  <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-tx</artifactId>
  </dependency>
  <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-orm</artifactId>
  </dependency>
</dependencies>
```

## In this section

* [**Process Engine Configuration**](/user-guide/spring-framework-integration/configuration) — Configure the engine with Spring.
* [**Spring Transaction Integration**](/user-guide/spring-framework-integration/transactions) — Share Spring-managed transactions.
* [**Automatic Resource Deployment**](/user-guide/spring-framework-integration/deployment) — Auto-deploy resources on startup.
* [**Spring Beans in Processes**](/user-guide/spring-framework-integration/expressions) — Reference Spring beans from expressions.
* [**Spring-Based Testing**](/user-guide/spring-framework-integration/testing) — Test with the Spring test support.
