Download process-test-coverage-0.2.3.jar file

Introduction

You can download process-test-coverage-0.2.3.jar in this page.

License

Open Source

Type List

process-test-coverage-0.2.3.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.camunda.consulting.snippets/process-test-coverage/pom.properties
META-INF/maven/org.camunda.consulting.snippets/process-test-coverage/pom.xml
bpmn-js-seed-master.zip
bpmn.js-report-template.html
org.camunda.bpm.consulting.process_test_coverage.BpmnJsReport.class
org.camunda.bpm.consulting.process_test_coverage.ProcessTestCoverage.class

Pom

process-test-coverage-0.2.3.pom file content.

<?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</groupId>
	  <artifactId>camunda-release-parent</artifactId>
	  <version>2.5</version>
	  <relativePath />  
  </parent>

  <groupId>org.camunda.consulting.snippets</groupId>
  <artifactId>process-test-coverage</artifactId>
  <version>0.2.3</version>

  <name>BPMN Process Test Coverage</name>
  <description>Helper library to visualize which parts of a BPMN process have been covered by a unit test</description>

  <properties>
    <camunda.version>7.0.0-Final</camunda.version>
    <maven.compiler.source>1.6</maven.compiler.source>
    <maven.compiler.target>1.6</maven.compiler.target>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>


  <dependencies>
    <dependency>
      <!-- process engine, needs to be provided -->
      <groupId>org.camunda.bpm</groupId>
      <artifactId>camunda-engine</artifactId>
      <version>${camunda.version}</version>
      <scope>provided</scope>
    </dependency>

	<dependency>
		<groupId>org.apache.commons</groupId>
		<artifactId>commons-io</artifactId>
		<version>1.3.2</version>
	</dependency>


		<dependency>
		  <groupId>commons-lang</groupId>
		  <artifactId>commons-lang</artifactId>
		  <version>2.6</version>
		</dependency>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <!-- Needed for InMemoryH2Test -->
      <groupId>com.h2database</groupId>
      <artifactId>h2</artifactId>
      <version>1.3.168</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <repositories>
    <repository>
      <id>camunda-bpm-nexus</id>
      <name>camunda BPM Maven Repository</name>
      <url>https://app.camunda.com/nexus/content/groups/public</url>
    </repository>
  </repositories>
  
  <scm>
    <url>https://github.com/camunda/camunda-consulting/tree/master/snippets/process-test-coverage</url>
    <connection>scm:git:git@github.com:camunda/camunda-consulting.git</connection>
    <developerConnection>scm:git:git@github.com:camunda/camunda-consulting.git</developerConnection>
    <tag>0.2.3</tag>
  </scm>

</project>

POM Entry

<dependency>
   <groupId>org.camunda.consulting.snippets</groupId>
   <artifactId>process-test-coverage</artifactId>
   <version>0.2.3</version>
</dependency>

Download

If you think the following process-test-coverage-0.2.3.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download process-test-coverage-0.2.3.jar file




PreviousNext

Related