spring-boot-starter-camunda-test-pom
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.camunda</groupId> <artifactId>spring-boot-starter-camunda-test-pom</artifactId> <version>8.8.0-alpha4</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>io.camunda</groupId> <artifactId>zeebe-process-test-root</artifactId> <version>8.8.0-alpha4</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>spring-boot-starter-camunda-test-pom</artifactId> <packaging>pom</packaging> <name>Spring Boot Starter Camunda Test POM</name> <modules> <module>common</module> <module>embedded</module> <module>testcontainer</module> </modules> <properties> <plugin.version.license>4.6</plugin.version.license> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <configuration> <failOnWarning>true</failOnWarning> <ignoredUnusedDeclaredDependencies> <!-- used in tests to provide an slf4j implementation--> <ignoredUnusedDeclaredDependency>org.slf4j:slf4j-simple</ignoredUnusedDeclaredDependency> </ignoredUnusedDeclaredDependencies> </configuration> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>${plugin.version.license}</version> <configuration> <header>com/mycila/maven/plugin/license/templates/APACHE-2.txt</header> <properties> <owner>camunda services GmbH</owner> <email>info@camunda.com</email> </properties> <includes> <include>**/*.java</include> </includes> <excludes /> <mapping> <java>SLASHSTAR_STYLE</java> </mapping> </configuration> <executions> <execution> <id>add-license</id> <goals> <goal>format</goal> </goals> <phase>process-sources</phase> </execution> </executions> </plugin> </plugins> </build> </project>