camunda-bpm-assert-scenario-examples
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.camunda.bpm.extension</groupId> <artifactId>camunda-bpm-assert-scenario-examples</artifactId> <version>1.1.0</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> <artifactId>camunda-bpm-assert-scenario-examples</artifactId> <version>1.1.0</version> <parent> <groupId>org.camunda.bpm.extension</groupId> <artifactId>camunda-bpm-assert-scenario-test</artifactId> <version>1.1.0</version> <relativePath>../test/pom.xml</relativePath> </parent> <properties> <camunda-bpm-assert.version>2.0-alpha1</camunda-bpm-assert.version> </properties> <dependencies> <dependency> <groupId>org.camunda.bpm.extension</groupId> <artifactId>camunda-bpm-assert-scenario</artifactId> </dependency> <dependency> <groupId>org.camunda.bpm</groupId> <artifactId>camunda-engine</artifactId> <version>RELEASE</version> </dependency> <dependency> <groupId>org.camunda.bpm.extension</groupId> <artifactId>camunda-bpm-process-test-coverage</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>log4j-over-slf4j</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jul-to-slf4j</artifactId> <scope>test</scope> </dependency> </dependencies> <developers> <developer> <name>Martin Schimak</name> <organization>plexiti GmbH</organization> <organizationUrl>http://plexiti.com/</organizationUrl> </developer> </developers> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> </project>