camunda-platform-7-rest-client-spring-boot
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.camunda.community.rest</groupId> <artifactId>camunda-platform-7-rest-client-spring-boot</artifactId> <version>7.22.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.camunda.community.rest</groupId> <artifactId>camunda-platform-7-rest-client-spring-boot-parent</artifactId> <version>7.22.4</version> <relativePath>../../pom.xml</relativePath> </parent> <artifactId>camunda-platform-7-rest-client-spring-boot</artifactId> <name>camunda-platform-7-rest-client-spring-boot/core</name> <packaging>jar</packaging> <properties> <!-- Do meter coverage --> <jacoco.skip>false</jacoco.skip> </properties> <dependencies> <!-- Client --> <dependency> <groupId>${project.groupId}</groupId> <artifactId>camunda-platform-7-rest-client-spring-boot-openapi</artifactId> <version>${project.version}</version> </dependency> <!-- Camunda --> <dependency> <groupId>io.holunda.camunda-api</groupId> <artifactId>camunda-bpm-engine-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.camunda.spin</groupId> <artifactId>camunda-spin-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.camunda.bpm</groupId> <artifactId>camunda-engine-plugin-spin</artifactId> <scope>provided</scope> </dependency> <!-- Feign --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign</artifactId> <scope>provided</scope> </dependency> <!-- Jackson --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jdk8</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.module</groupId> <artifactId>jackson-module-kotlin</artifactId> <scope>provided</scope> </dependency> <!-- Annotation processing --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>license</id> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> </plugin> </plugins> </build> </profile> </profiles> </project>