camunda-archetype-spring-boot-demo
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.camunda.bpm.archetype</groupId> <artifactId>camunda-archetype-spring-boot-demo</artifactId> <version>7.23.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> <parent> <groupId>org.camunda.bpm.archetype</groupId> <artifactId>camunda-archetype-root</artifactId> <version>7.23.0</version> </parent> <!-- Unfortunately we cannot easily change the group id here - as it requires a different Sonartype account. <groupId>com.camunda.consulting</groupId> --> <artifactId>camunda-archetype-spring-boot-demo</artifactId> <packaging>maven-archetype</packaging> <name>Camunda Platform Archetype: Demo Spring Boot Process Application</name> <description>Demo application with lots of pre-built parts that uses the Spring Boot Starter Contains: BPMN Process, Java Delegate, HTML5- start and task forms, JUnit Test with in-memory engine and visual process test coverage</description> <build> <extensions> <extension> <groupId>org.apache.maven.archetype</groupId> <artifactId>archetype-packaging</artifactId> <version>3.1.0</version> </extension> </extensions> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <configuration> <!-- Required so that .gitignore gets included in archetypes; see https://issues.apache.org/jira/browse/MRESOURCES-190 --> <addDefaultExcludes>false</addDefaultExcludes> </configuration> </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>archetype-resources/pom.xml</include> <include>META-INF/maven/archetype-metadata.xml</include> </includes> </resource> <resource> <directory>src/main/resources</directory> <filtering>false</filtering> <excludes> <exclude>archetype-resources/pom.xml</exclude> <exclude>META-INF/maven/archetype-metadata.xml</exclude> </excludes> </resource> </resources> <testResources> <testResource> <directory>src/test/resources</directory> <filtering>true</filtering> </testResource> </testResources> </build> </project>