bpmn-driven-testing-gradle-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.camunda.community</groupId> <artifactId>bpmn-driven-testing-gradle-plugin</artifactId> <version>0.7.0</version> </dependency>
<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</groupId> <artifactId>bpmn-driven-testing-root</artifactId> <version>0.7.0</version> </parent> <artifactId>bpmn-driven-testing-gradle-plugin</artifactId> <properties> <!-- Versions --> <gradle.version>7.5.1</gradle.version> <groovy.version>3.0.10</groovy.version> </properties> <repositories> <repository> <id>local-repository</id> <url>file:///${project.basedir}/local-repository</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.camunda.community</groupId> <artifactId>bpmn-driven-testing-impl</artifactId> </dependency> <!-- Gradle --> <dependency> <groupId>org.gradle</groupId> <artifactId>gradle-base-services</artifactId> <version>${gradle.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.gradle</groupId> <artifactId>gradle-core</artifactId> <version>${gradle.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.gradle</groupId> <artifactId>gradle-core-api</artifactId> <version>${gradle.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.gradle</groupId> <artifactId>gradle-model-core</artifactId> <version>${gradle.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.gradle</groupId> <artifactId>gradle-plugins</artifactId> <version>${gradle.version}</version> <scope>provided</scope> </dependency> <!-- Groovy --> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy</artifactId> <version>${groovy.version}</version> <scope>provided</scope> </dependency> <!-- Test --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.google.truth</groupId> <artifactId>truth</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.robotframework</groupId> <artifactId>robotframework</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M6</version> <executions> <execution> <id>integration-test</id> <goals> <goal>test</goal> </goals> <phase>integration-test</phase> <configuration> <excludes> <exclude>**/*Test.java</exclude> </excludes> <includes> <include>**/*IT.java</include> </includes> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>