camunda-process-test-coverage-junit4-platform-7
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.camunda.community.process_test_coverage</groupId> <artifactId>camunda-process-test-coverage-junit4-platform-7</artifactId> <version>2.8.1</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.process_test_coverage</groupId> <artifactId>camunda-process-test-coverage-parent</artifactId> <version>2.8.1</version> <relativePath>../pom.xml</relativePath> </parent> <name>Camunda Process Test Coverage JUnit4 Platform 7</name> <artifactId>camunda-process-test-coverage-junit4-platform-7</artifactId> <properties> <dokka.skip>true</dokka.skip> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>camunda-process-test-coverage-engine-platform-7</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>camunda-process-test-coverage-report-generator</artifactId> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <!-- We intentionally always compile against latest Camunda release, but test against many versions *provided* by user projects. Therefore the tests are in a separate module. --> <dependency> <groupId>org.camunda.bpm</groupId> <artifactId>camunda-engine</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.camunda.bpm</groupId> <artifactId>camunda-engine-spring</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <scope>provided</scope> </dependency> </dependencies> </project>