camunda-bpm-process-test-coverage-report-generator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.camunda.bpm.extension</groupId> <artifactId>camunda-bpm-process-test-coverage-report-generator</artifactId> <version>1.0.3</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> <artifactId>camunda-bpm-process-test-coverage-parent</artifactId> <groupId>org.camunda.bpm.extension</groupId> <version>1.0.3</version> </parent> <artifactId>camunda-bpm-process-test-coverage-report-generator</artifactId> <name>Camunda BPM Process Test Coverage Report Generator</name> <properties> <dokka.skip>true</dokka.skip> </properties> <dependencies> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>org.camunda.bpm.extension</groupId> <artifactId>camunda-bpm-process-test-coverage-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.camunda.bpm</groupId> <artifactId>camunda-engine</artifactId> <version>${camunda.compile.version}</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> <executions> <execution> <id>bower install</id> <goals> <goal>bower</goal> </goals> <phase>process-classes</phase> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>node-and-npm</id> <activation> <file> <missing>node</missing> </file> </activation> <build> <plugins> <plugin> <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> <executions> <execution> <id>install node and npm</id> <goals> <goal>install-node-and-npm</goal> </goals> <phase>initialize</phase> <configuration> <npmVersion>${npm.version}</npmVersion> <nodeVersion>${node.version}</nodeVersion> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>npm-install</id> <activation> <file> <missing>node_modules</missing> </file> </activation> <build> <plugins> <plugin> <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> <executions> <execution> <id>npm install</id> <goals> <goal>npm</goal> </goals> <phase>initialize</phase> <configuration> <arguments>install --no-optional</arguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>