camunda-rest-client-spring-boot-itest
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.camunda.bpm.extension.rest</groupId> <artifactId>camunda-rest-client-spring-boot-itest</artifactId> <version>0.0.6</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.bpm.extension.rest</groupId> <artifactId>camunda-rest-client-spring-boot-examples-root</artifactId> <version>0.0.6</version> </parent> <artifactId>camunda-rest-client-spring-boot-itest</artifactId> <name>${project.artifactId}</name> <description>Integration tests of the client.</description> <packaging>jar</packaging> <properties> <!-- Skip publication of the example to Maven Central --> <maven.deploy.skip>true</maven.deploy.skip> <!-- Do meter coverage --> <jacoco.skip>false</jacoco.skip> <!-- USe Camunda BPM JGiven --> <camunda-jgiven.version>0.0.8</camunda-jgiven.version> <jgiven.version>1.0.0</jgiven.version> </properties> <dependencies> <!-- Include extension starter --> <dependency> <groupId>org.camunda.bpm.extension.rest</groupId> <artifactId>camunda-rest-client-spring-boot-starter-provided</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> <dependency> <groupId>org.camunda.bpm.springboot</groupId> <artifactId>camunda-bpm-spring-boot-starter-rest</artifactId> </dependency> <dependency> <groupId>org.camunda.bpm</groupId> <artifactId>camunda-engine-plugin-spin</artifactId> </dependency> <dependency> <groupId>org.camunda.spin</groupId> <artifactId>camunda-spin-core</artifactId> </dependency> <dependency> <groupId>org.camunda.spin</groupId> <artifactId>camunda-spin-dataformat-json-jackson</artifactId> </dependency> <!-- Jackson --> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jdk8</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.module</groupId> <artifactId>jackson-module-kotlin</artifactId> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> </dependency> <!-- Testing --> <!-- add junit 4 to enable its usage until Camunda switched to JUnit 5 --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.holunda.testing</groupId> <artifactId>camunda-bpm-jgiven</artifactId> <version>${camunda-jgiven.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.tngtech.jgiven</groupId> <artifactId>jgiven-spring-junit4</artifactId> <version>${jgiven.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- JGiven Reports --> <plugin> <groupId>com.tngtech.jgiven</groupId> <artifactId>jgiven-maven-plugin</artifactId> <version>1.0.0</version> <executions> <execution> <goals> <goal>report</goal> </goals> </execution> </executions> <configuration> <format>html</format> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>license</id> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> </plugin> </plugins> </build> </profile> </profiles> </project>