├── .ci.cambpm ├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── LICENSE ├── NOTICE ├── README.md ├── archetype-catalog.xml ├── camunda-archetype-cockpit-plugin ├── pom.xml └── src │ ├── main │ └── resources │ │ ├── META-INF │ │ └── maven │ │ │ └── archetype-metadata.xml │ │ └── archetype-resources │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ ├── screenshot.png │ │ └── src │ │ └── main │ │ ├── java │ │ ├── __camunda-plugin-base-class-name__.java │ │ ├── db │ │ │ └── ProcessInstanceCountDto.java │ │ └── resources │ │ │ ├── ProcessInstanceResource.java │ │ │ └── __camunda-plugin-base-class-name__RootResource.java │ │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ └── org.camunda.bpm.cockpit.plugin.spi.CockpitPlugin │ │ ├── __camunda-plugin-id__-query.xml │ │ └── plugin-webapp │ │ └── __camunda-plugin-id__ │ │ ├── app │ │ ├── plugin.css │ │ └── plugin.js │ │ └── info.txt │ └── test │ └── resources │ └── projects │ └── basic │ ├── archetype.properties │ └── goal.txt ├── camunda-archetype-ejb-war ├── pom.xml └── src │ ├── main │ └── resources │ │ ├── META-INF │ │ └── maven │ │ │ └── archetype-metadata.xml │ │ └── archetype-resources │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ ├── LoggerDelegate.java │ │ │ └── ProcessConstants.java │ │ ├── resources │ │ │ ├── META-INF │ │ │ │ ├── persistence.xml │ │ │ │ └── processes.xml │ │ │ └── process.bpmn │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ └── beans.xml │ │ │ └── forms │ │ │ ├── start-form.html │ │ │ └── task-form.html │ │ └── test │ │ ├── java │ │ └── ProcessUnitTest.java │ │ └── resources │ │ ├── META-INF │ │ └── processes.xml │ │ ├── camunda.cfg.xml │ │ ├── logback-test.xml │ │ └── logging.properties │ └── test │ └── resources │ └── projects │ └── basic │ ├── archetype.properties │ └── goal.txt ├── camunda-archetype-engine-plugin ├── pom.xml └── src │ ├── main │ └── resources │ │ ├── META-INF │ │ └── maven │ │ │ └── archetype-metadata.xml │ │ └── archetype-resources │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ ├── __class-name-prefix__ParseListener.java │ │ │ ├── __class-name-prefix__ProcessEnginePlugin.java │ │ │ └── __class-name-prefix__TaskListener.java │ │ └── test │ │ ├── java │ │ └── ProcessUnitTest.java │ │ └── resources │ │ ├── camunda.cfg.xml │ │ ├── logback-test.xml │ │ ├── logging.properties │ │ └── process.bpmn │ └── test │ └── resources │ └── projects │ └── basic │ ├── archetype.properties │ └── goal.txt ├── camunda-archetype-servlet-war-demo ├── pom.xml └── src │ ├── main │ └── resources │ │ ├── META-INF │ │ └── maven │ │ │ └── archetype-metadata.xml │ │ └── archetype-resources │ │ ├── .gitignore │ │ ├── README.md │ │ ├── license.txt │ │ ├── pom.xml │ │ ├── settings.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ ├── CamundaBpmProcessApplication.java │ │ │ ├── FileVariableServlet.java │ │ │ ├── LoggerDelegate.java │ │ │ ├── LoggerTaskListener.java │ │ │ ├── ProcessConstants.java │ │ │ └── RestCallDelegate.java │ │ ├── resources │ │ │ ├── META-INF │ │ │ │ └── processes.xml │ │ │ └── process.bpmn │ │ └── webapp │ │ │ ├── documents │ │ │ ├── Doing a Proper Proof Of Concept.pdf │ │ │ └── Handling Data in Processes.pdf │ │ │ └── forms │ │ │ ├── start-form.html │ │ │ ├── task-form-date-changer.html │ │ │ ├── task-form-date-picker.html │ │ │ ├── task-form-pdf-upload.html │ │ │ ├── task-form-pdf-viewer-multiple.html │ │ │ ├── task-form-pdf-viewer.html │ │ │ └── task-form.html │ │ └── test │ │ ├── java │ │ └── ProcessUnitTest.java │ │ └── resources │ │ ├── camunda.cfg.xml │ │ ├── logback-test.xml │ │ └── logging.properties │ └── test │ └── resources │ └── projects │ └── basic │ ├── archetype.properties │ └── goal.txt ├── camunda-archetype-servlet-war ├── pom.xml └── src │ ├── main │ └── resources │ │ ├── META-INF │ │ └── maven │ │ │ └── archetype-metadata.xml │ │ └── archetype-resources │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ ├── CamundaBpmProcessApplication.java │ │ │ ├── LoggerDelegate.java │ │ │ └── ProcessConstants.java │ │ ├── resources │ │ │ ├── META-INF │ │ │ │ └── processes.xml │ │ │ └── process.bpmn │ │ └── webapp │ │ │ └── forms │ │ │ ├── start-form.html │ │ │ └── task-form.html │ │ └── test │ │ ├── java │ │ └── ProcessUnitTest.java │ │ └── resources │ │ ├── camunda.cfg.xml │ │ ├── logback-test.xml │ │ └── logging.properties │ └── test │ └── resources │ └── projects │ └── basic │ ├── archetype.properties │ └── goal.txt ├── camunda-archetype-spring-boot-demo ├── pom.xml └── src │ ├── main │ └── resources │ │ ├── META-INF │ │ └── maven │ │ │ └── archetype-metadata.xml │ │ └── archetype-resources │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ ├── settings.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ ├── CamundaApplication.java │ │ │ ├── CreateUsersAndGroupsApplicationRunner.java │ │ │ ├── FileVariableServlet.java │ │ │ ├── LoggerDelegate.java │ │ │ ├── LoggerTaskListener.java │ │ │ └── ProcessConstants.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── processes.xml │ │ │ ├── application.yaml │ │ │ ├── camunda-license.txt │ │ │ ├── process.bpmn │ │ │ └── static │ │ │ └── forms │ │ │ ├── start-form.html │ │ │ ├── task-form-date-changer.html │ │ │ ├── task-form-date-picker.html │ │ │ ├── task-form-pdf-upload.html │ │ │ ├── task-form-pdf-viewer-multiple.html │ │ │ ├── task-form-pdf-viewer.html │ │ │ └── task-form.html │ │ └── test │ │ ├── java │ │ ├── InMemoryH2Test.java │ │ ├── ProcessScenarioTest.java │ │ └── ProcessUnitTest.java │ │ └── resources │ │ ├── application.yaml │ │ ├── camunda.cfg.xml │ │ ├── logback-test.xml │ │ └── logging.properties │ └── test │ └── resources │ └── projects │ └── basic │ ├── archetype.properties │ └── goal.txt ├── camunda-archetype-spring-boot ├── pom.xml └── src │ ├── main │ └── resources │ │ ├── META-INF │ │ └── maven │ │ │ └── archetype-metadata.xml │ │ └── archetype-resources │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ ├── CamundaApplication.java │ │ │ ├── LoggerDelegate.java │ │ │ └── ProcessConstants.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── processes.xml │ │ │ ├── application.yaml │ │ │ ├── process.bpmn │ │ │ └── static │ │ │ └── forms │ │ │ ├── start-form.html │ │ │ └── task-form.html │ │ └── test │ │ ├── java │ │ ├── InMemoryH2Test.java │ │ ├── ProcessScenarioTest.java │ │ └── ProcessUnitTest.java │ │ └── resources │ │ ├── application.yaml │ │ ├── camunda.cfg.xml │ │ ├── logback-test.xml │ │ └── logging.properties │ └── test │ └── resources │ └── projects │ └── basic │ ├── archetype.properties │ └── goal.txt ├── mvnw ├── mvnw.cmd ├── pom.xml └── utilities ├── meld-current-dir-into-demo-main-java.sh ├── meld-current-dir-into-demo-sb-main-java.sh ├── meld-current-dir-into-demo-sb-test-java.sh ├── meld-current-dir-into-demo-sb.sh ├── meld-demos-CreateUsersAndGroupsApplicationRunner.sh ├── meld-demos-forms.sh ├── meld-demos.sh ├── meld-ejb+cockpit-plugin.sh ├── meld-plugins.sh ├── meld-servlet+cockpit-plugin.sh ├── meld-servlet+demo.sh ├── meld-servlet+ejb.sh ├── meld-servlet+engine-plugin.sh ├── meld-servlet+spring-boot.sh ├── meld-spring-boot-process-tests.sh ├── meld-spring-boots.sh ├── test-demo-on-wildfly.sh └── test-spring-boot-demo.sh /.ci.cambpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/.ci.cambpm -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/README.md -------------------------------------------------------------------------------- /archetype-catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/archetype-catalog.xml -------------------------------------------------------------------------------- /camunda-archetype-cockpit-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-cockpit-plugin/pom.xml -------------------------------------------------------------------------------- /camunda-archetype-cockpit-plugin/src/main/resources/META-INF/maven/archetype-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-cockpit-plugin/src/main/resources/META-INF/maven/archetype-metadata.xml -------------------------------------------------------------------------------- /camunda-archetype-cockpit-plugin/src/main/resources/archetype-resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-cockpit-plugin/src/main/resources/archetype-resources/.gitignore -------------------------------------------------------------------------------- /camunda-archetype-cockpit-plugin/src/main/resources/archetype-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-cockpit-plugin/src/main/resources/archetype-resources/README.md -------------------------------------------------------------------------------- /camunda-archetype-cockpit-plugin/src/main/resources/archetype-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-cockpit-plugin/src/main/resources/archetype-resources/pom.xml -------------------------------------------------------------------------------- /camunda-archetype-cockpit-plugin/src/main/resources/archetype-resources/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-cockpit-plugin/src/main/resources/archetype-resources/screenshot.png -------------------------------------------------------------------------------- /camunda-archetype-cockpit-plugin/src/main/resources/archetype-resources/src/main/java/__camunda-plugin-base-class-name__.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-cockpit-plugin/src/main/resources/archetype-resources/src/main/java/__camunda-plugin-base-class-name__.java -------------------------------------------------------------------------------- /camunda-archetype-cockpit-plugin/src/main/resources/archetype-resources/src/main/java/db/ProcessInstanceCountDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-cockpit-plugin/src/main/resources/archetype-resources/src/main/java/db/ProcessInstanceCountDto.java -------------------------------------------------------------------------------- /camunda-archetype-cockpit-plugin/src/main/resources/archetype-resources/src/main/java/resources/ProcessInstanceResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-cockpit-plugin/src/main/resources/archetype-resources/src/main/java/resources/ProcessInstanceResource.java -------------------------------------------------------------------------------- /camunda-archetype-cockpit-plugin/src/main/resources/archetype-resources/src/main/java/resources/__camunda-plugin-base-class-name__RootResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-cockpit-plugin/src/main/resources/archetype-resources/src/main/java/resources/__camunda-plugin-base-class-name__RootResource.java -------------------------------------------------------------------------------- /camunda-archetype-cockpit-plugin/src/main/resources/archetype-resources/src/main/resources/META-INF/services/org.camunda.bpm.cockpit.plugin.spi.CockpitPlugin: -------------------------------------------------------------------------------- 1 | ${package}.${camunda-plugin-base-class-name} -------------------------------------------------------------------------------- /camunda-archetype-cockpit-plugin/src/main/resources/archetype-resources/src/main/resources/__camunda-plugin-id__-query.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-cockpit-plugin/src/main/resources/archetype-resources/src/main/resources/__camunda-plugin-id__-query.xml -------------------------------------------------------------------------------- /camunda-archetype-cockpit-plugin/src/main/resources/archetype-resources/src/main/resources/plugin-webapp/__camunda-plugin-id__/app/plugin.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /camunda-archetype-cockpit-plugin/src/main/resources/archetype-resources/src/main/resources/plugin-webapp/__camunda-plugin-id__/app/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-cockpit-plugin/src/main/resources/archetype-resources/src/main/resources/plugin-webapp/__camunda-plugin-id__/app/plugin.js -------------------------------------------------------------------------------- /camunda-archetype-cockpit-plugin/src/main/resources/archetype-resources/src/main/resources/plugin-webapp/__camunda-plugin-id__/info.txt: -------------------------------------------------------------------------------- 1 | # Client side assets of the cockpit-plugin-sample -------------------------------------------------------------------------------- /camunda-archetype-cockpit-plugin/src/test/resources/projects/basic/archetype.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-cockpit-plugin/src/test/resources/projects/basic/archetype.properties -------------------------------------------------------------------------------- /camunda-archetype-cockpit-plugin/src/test/resources/projects/basic/goal.txt: -------------------------------------------------------------------------------- 1 | package 2 | -------------------------------------------------------------------------------- /camunda-archetype-ejb-war/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-ejb-war/pom.xml -------------------------------------------------------------------------------- /camunda-archetype-ejb-war/src/main/resources/META-INF/maven/archetype-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-ejb-war/src/main/resources/META-INF/maven/archetype-metadata.xml -------------------------------------------------------------------------------- /camunda-archetype-ejb-war/src/main/resources/archetype-resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-ejb-war/src/main/resources/archetype-resources/.gitignore -------------------------------------------------------------------------------- /camunda-archetype-ejb-war/src/main/resources/archetype-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-ejb-war/src/main/resources/archetype-resources/README.md -------------------------------------------------------------------------------- /camunda-archetype-ejb-war/src/main/resources/archetype-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-ejb-war/src/main/resources/archetype-resources/pom.xml -------------------------------------------------------------------------------- /camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/main/java/LoggerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/main/java/LoggerDelegate.java -------------------------------------------------------------------------------- /camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/main/java/ProcessConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/main/java/ProcessConstants.java -------------------------------------------------------------------------------- /camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/main/resources/META-INF/persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/main/resources/META-INF/persistence.xml -------------------------------------------------------------------------------- /camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/main/resources/META-INF/processes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/main/resources/META-INF/processes.xml -------------------------------------------------------------------------------- /camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/main/resources/process.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/main/resources/process.bpmn -------------------------------------------------------------------------------- /camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/beans.xml -------------------------------------------------------------------------------- /camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/main/webapp/forms/start-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/main/webapp/forms/start-form.html -------------------------------------------------------------------------------- /camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/main/webapp/forms/task-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/main/webapp/forms/task-form.html -------------------------------------------------------------------------------- /camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/test/java/ProcessUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/test/java/ProcessUnitTest.java -------------------------------------------------------------------------------- /camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/test/resources/META-INF/processes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/test/resources/META-INF/processes.xml -------------------------------------------------------------------------------- /camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/test/resources/camunda.cfg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/test/resources/camunda.cfg.xml -------------------------------------------------------------------------------- /camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/test/resources/logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-ejb-war/src/main/resources/archetype-resources/src/test/resources/logging.properties -------------------------------------------------------------------------------- /camunda-archetype-ejb-war/src/test/resources/projects/basic/archetype.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-ejb-war/src/test/resources/projects/basic/archetype.properties -------------------------------------------------------------------------------- /camunda-archetype-ejb-war/src/test/resources/projects/basic/goal.txt: -------------------------------------------------------------------------------- 1 | package 2 | -------------------------------------------------------------------------------- /camunda-archetype-engine-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-engine-plugin/pom.xml -------------------------------------------------------------------------------- /camunda-archetype-engine-plugin/src/main/resources/META-INF/maven/archetype-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-engine-plugin/src/main/resources/META-INF/maven/archetype-metadata.xml -------------------------------------------------------------------------------- /camunda-archetype-engine-plugin/src/main/resources/archetype-resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-engine-plugin/src/main/resources/archetype-resources/.gitignore -------------------------------------------------------------------------------- /camunda-archetype-engine-plugin/src/main/resources/archetype-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-engine-plugin/src/main/resources/archetype-resources/README.md -------------------------------------------------------------------------------- /camunda-archetype-engine-plugin/src/main/resources/archetype-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-engine-plugin/src/main/resources/archetype-resources/pom.xml -------------------------------------------------------------------------------- /camunda-archetype-engine-plugin/src/main/resources/archetype-resources/src/main/java/__class-name-prefix__ParseListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-engine-plugin/src/main/resources/archetype-resources/src/main/java/__class-name-prefix__ParseListener.java -------------------------------------------------------------------------------- /camunda-archetype-engine-plugin/src/main/resources/archetype-resources/src/main/java/__class-name-prefix__ProcessEnginePlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-engine-plugin/src/main/resources/archetype-resources/src/main/java/__class-name-prefix__ProcessEnginePlugin.java -------------------------------------------------------------------------------- /camunda-archetype-engine-plugin/src/main/resources/archetype-resources/src/main/java/__class-name-prefix__TaskListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-engine-plugin/src/main/resources/archetype-resources/src/main/java/__class-name-prefix__TaskListener.java -------------------------------------------------------------------------------- /camunda-archetype-engine-plugin/src/main/resources/archetype-resources/src/test/java/ProcessUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-engine-plugin/src/main/resources/archetype-resources/src/test/java/ProcessUnitTest.java -------------------------------------------------------------------------------- /camunda-archetype-engine-plugin/src/main/resources/archetype-resources/src/test/resources/camunda.cfg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-engine-plugin/src/main/resources/archetype-resources/src/test/resources/camunda.cfg.xml -------------------------------------------------------------------------------- /camunda-archetype-engine-plugin/src/main/resources/archetype-resources/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-engine-plugin/src/main/resources/archetype-resources/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /camunda-archetype-engine-plugin/src/main/resources/archetype-resources/src/test/resources/logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-engine-plugin/src/main/resources/archetype-resources/src/test/resources/logging.properties -------------------------------------------------------------------------------- /camunda-archetype-engine-plugin/src/main/resources/archetype-resources/src/test/resources/process.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-engine-plugin/src/main/resources/archetype-resources/src/test/resources/process.bpmn -------------------------------------------------------------------------------- /camunda-archetype-engine-plugin/src/test/resources/projects/basic/archetype.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-engine-plugin/src/test/resources/projects/basic/archetype.properties -------------------------------------------------------------------------------- /camunda-archetype-engine-plugin/src/test/resources/projects/basic/goal.txt: -------------------------------------------------------------------------------- 1 | package 2 | -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/pom.xml -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/META-INF/maven/archetype-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/META-INF/maven/archetype-metadata.xml -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/.gitignore -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/README.md -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/license.txt -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/pom.xml -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/settings.xml -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/java/CamundaBpmProcessApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/java/CamundaBpmProcessApplication.java -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/java/FileVariableServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/java/FileVariableServlet.java -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/java/LoggerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/java/LoggerDelegate.java -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/java/LoggerTaskListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/java/LoggerTaskListener.java -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/java/ProcessConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/java/ProcessConstants.java -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/java/RestCallDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/java/RestCallDelegate.java -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/resources/META-INF/processes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/resources/META-INF/processes.xml -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/resources/process.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/resources/process.bpmn -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/webapp/documents/Doing a Proper Proof Of Concept.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/webapp/documents/Doing a Proper Proof Of Concept.pdf -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/webapp/documents/Handling Data in Processes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/webapp/documents/Handling Data in Processes.pdf -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/webapp/forms/start-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/webapp/forms/start-form.html -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/webapp/forms/task-form-date-changer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/webapp/forms/task-form-date-changer.html -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/webapp/forms/task-form-date-picker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/webapp/forms/task-form-date-picker.html -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/webapp/forms/task-form-pdf-upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/webapp/forms/task-form-pdf-upload.html -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/webapp/forms/task-form-pdf-viewer-multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/webapp/forms/task-form-pdf-viewer-multiple.html -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/webapp/forms/task-form-pdf-viewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/webapp/forms/task-form-pdf-viewer.html -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/webapp/forms/task-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/main/webapp/forms/task-form.html -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/test/java/ProcessUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/test/java/ProcessUnitTest.java -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/test/resources/camunda.cfg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/test/resources/camunda.cfg.xml -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/test/resources/logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/main/resources/archetype-resources/src/test/resources/logging.properties -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/test/resources/projects/basic/archetype.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war-demo/src/test/resources/projects/basic/archetype.properties -------------------------------------------------------------------------------- /camunda-archetype-servlet-war-demo/src/test/resources/projects/basic/goal.txt: -------------------------------------------------------------------------------- 1 | package 2 | -------------------------------------------------------------------------------- /camunda-archetype-servlet-war/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war/pom.xml -------------------------------------------------------------------------------- /camunda-archetype-servlet-war/src/main/resources/META-INF/maven/archetype-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war/src/main/resources/META-INF/maven/archetype-metadata.xml -------------------------------------------------------------------------------- /camunda-archetype-servlet-war/src/main/resources/archetype-resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war/src/main/resources/archetype-resources/.gitignore -------------------------------------------------------------------------------- /camunda-archetype-servlet-war/src/main/resources/archetype-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war/src/main/resources/archetype-resources/README.md -------------------------------------------------------------------------------- /camunda-archetype-servlet-war/src/main/resources/archetype-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war/src/main/resources/archetype-resources/pom.xml -------------------------------------------------------------------------------- /camunda-archetype-servlet-war/src/main/resources/archetype-resources/src/main/java/CamundaBpmProcessApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war/src/main/resources/archetype-resources/src/main/java/CamundaBpmProcessApplication.java -------------------------------------------------------------------------------- /camunda-archetype-servlet-war/src/main/resources/archetype-resources/src/main/java/LoggerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war/src/main/resources/archetype-resources/src/main/java/LoggerDelegate.java -------------------------------------------------------------------------------- /camunda-archetype-servlet-war/src/main/resources/archetype-resources/src/main/java/ProcessConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war/src/main/resources/archetype-resources/src/main/java/ProcessConstants.java -------------------------------------------------------------------------------- /camunda-archetype-servlet-war/src/main/resources/archetype-resources/src/main/resources/META-INF/processes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war/src/main/resources/archetype-resources/src/main/resources/META-INF/processes.xml -------------------------------------------------------------------------------- /camunda-archetype-servlet-war/src/main/resources/archetype-resources/src/main/resources/process.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war/src/main/resources/archetype-resources/src/main/resources/process.bpmn -------------------------------------------------------------------------------- /camunda-archetype-servlet-war/src/main/resources/archetype-resources/src/main/webapp/forms/start-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war/src/main/resources/archetype-resources/src/main/webapp/forms/start-form.html -------------------------------------------------------------------------------- /camunda-archetype-servlet-war/src/main/resources/archetype-resources/src/main/webapp/forms/task-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war/src/main/resources/archetype-resources/src/main/webapp/forms/task-form.html -------------------------------------------------------------------------------- /camunda-archetype-servlet-war/src/main/resources/archetype-resources/src/test/java/ProcessUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war/src/main/resources/archetype-resources/src/test/java/ProcessUnitTest.java -------------------------------------------------------------------------------- /camunda-archetype-servlet-war/src/main/resources/archetype-resources/src/test/resources/camunda.cfg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war/src/main/resources/archetype-resources/src/test/resources/camunda.cfg.xml -------------------------------------------------------------------------------- /camunda-archetype-servlet-war/src/main/resources/archetype-resources/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war/src/main/resources/archetype-resources/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /camunda-archetype-servlet-war/src/main/resources/archetype-resources/src/test/resources/logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war/src/main/resources/archetype-resources/src/test/resources/logging.properties -------------------------------------------------------------------------------- /camunda-archetype-servlet-war/src/test/resources/projects/basic/archetype.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-servlet-war/src/test/resources/projects/basic/archetype.properties -------------------------------------------------------------------------------- /camunda-archetype-servlet-war/src/test/resources/projects/basic/goal.txt: -------------------------------------------------------------------------------- 1 | package 2 | -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/pom.xml -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/META-INF/maven/archetype-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/META-INF/maven/archetype-metadata.xml -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/.gitignore -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/README.md -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/pom.xml -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/settings.xml -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/java/CamundaApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/java/CamundaApplication.java -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/java/CreateUsersAndGroupsApplicationRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/java/CreateUsersAndGroupsApplicationRunner.java -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/java/FileVariableServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/java/FileVariableServlet.java -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/java/LoggerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/java/LoggerDelegate.java -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/java/LoggerTaskListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/java/LoggerTaskListener.java -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/java/ProcessConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/java/ProcessConstants.java -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/resources/META-INF/processes.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/resources/application.yaml -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/resources/camunda-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/resources/camunda-license.txt -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/resources/process.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/resources/process.bpmn -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/resources/static/forms/start-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/resources/static/forms/start-form.html -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/resources/static/forms/task-form-date-changer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/resources/static/forms/task-form-date-changer.html -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/resources/static/forms/task-form-date-picker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/resources/static/forms/task-form-date-picker.html -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/resources/static/forms/task-form-pdf-upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/resources/static/forms/task-form-pdf-upload.html -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/resources/static/forms/task-form-pdf-viewer-multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/resources/static/forms/task-form-pdf-viewer-multiple.html -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/resources/static/forms/task-form-pdf-viewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/resources/static/forms/task-form-pdf-viewer.html -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/resources/static/forms/task-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/main/resources/static/forms/task-form.html -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/test/java/InMemoryH2Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/test/java/InMemoryH2Test.java -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/test/java/ProcessScenarioTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/test/java/ProcessScenarioTest.java -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/test/java/ProcessUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/test/java/ProcessUnitTest.java -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/test/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/test/resources/application.yaml -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/test/resources/camunda.cfg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/test/resources/camunda.cfg.xml -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/test/resources/logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/main/resources/archetype-resources/src/test/resources/logging.properties -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/test/resources/projects/basic/archetype.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot-demo/src/test/resources/projects/basic/archetype.properties -------------------------------------------------------------------------------- /camunda-archetype-spring-boot-demo/src/test/resources/projects/basic/goal.txt: -------------------------------------------------------------------------------- 1 | package 2 | -------------------------------------------------------------------------------- /camunda-archetype-spring-boot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot/pom.xml -------------------------------------------------------------------------------- /camunda-archetype-spring-boot/src/main/resources/META-INF/maven/archetype-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot/src/main/resources/META-INF/maven/archetype-metadata.xml -------------------------------------------------------------------------------- /camunda-archetype-spring-boot/src/main/resources/archetype-resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot/src/main/resources/archetype-resources/.gitignore -------------------------------------------------------------------------------- /camunda-archetype-spring-boot/src/main/resources/archetype-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot/src/main/resources/archetype-resources/README.md -------------------------------------------------------------------------------- /camunda-archetype-spring-boot/src/main/resources/archetype-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot/src/main/resources/archetype-resources/pom.xml -------------------------------------------------------------------------------- /camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/main/java/CamundaApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/main/java/CamundaApplication.java -------------------------------------------------------------------------------- /camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/main/java/LoggerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/main/java/LoggerDelegate.java -------------------------------------------------------------------------------- /camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/main/java/ProcessConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/main/java/ProcessConstants.java -------------------------------------------------------------------------------- /camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/main/resources/META-INF/processes.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/main/resources/application.yaml -------------------------------------------------------------------------------- /camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/main/resources/process.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/main/resources/process.bpmn -------------------------------------------------------------------------------- /camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/main/resources/static/forms/start-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/main/resources/static/forms/start-form.html -------------------------------------------------------------------------------- /camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/main/resources/static/forms/task-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/main/resources/static/forms/task-form.html -------------------------------------------------------------------------------- /camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/test/java/InMemoryH2Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/test/java/InMemoryH2Test.java -------------------------------------------------------------------------------- /camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/test/java/ProcessScenarioTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/test/java/ProcessScenarioTest.java -------------------------------------------------------------------------------- /camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/test/java/ProcessUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/test/java/ProcessUnitTest.java -------------------------------------------------------------------------------- /camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/test/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/test/resources/application.yaml -------------------------------------------------------------------------------- /camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/test/resources/camunda.cfg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/test/resources/camunda.cfg.xml -------------------------------------------------------------------------------- /camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/test/resources/logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot/src/main/resources/archetype-resources/src/test/resources/logging.properties -------------------------------------------------------------------------------- /camunda-archetype-spring-boot/src/test/resources/projects/basic/archetype.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/camunda-archetype-spring-boot/src/test/resources/projects/basic/archetype.properties -------------------------------------------------------------------------------- /camunda-archetype-spring-boot/src/test/resources/projects/basic/goal.txt: -------------------------------------------------------------------------------- 1 | package 2 | -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/pom.xml -------------------------------------------------------------------------------- /utilities/meld-current-dir-into-demo-main-java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/utilities/meld-current-dir-into-demo-main-java.sh -------------------------------------------------------------------------------- /utilities/meld-current-dir-into-demo-sb-main-java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/utilities/meld-current-dir-into-demo-sb-main-java.sh -------------------------------------------------------------------------------- /utilities/meld-current-dir-into-demo-sb-test-java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/utilities/meld-current-dir-into-demo-sb-test-java.sh -------------------------------------------------------------------------------- /utilities/meld-current-dir-into-demo-sb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/utilities/meld-current-dir-into-demo-sb.sh -------------------------------------------------------------------------------- /utilities/meld-demos-CreateUsersAndGroupsApplicationRunner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/utilities/meld-demos-CreateUsersAndGroupsApplicationRunner.sh -------------------------------------------------------------------------------- /utilities/meld-demos-forms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/utilities/meld-demos-forms.sh -------------------------------------------------------------------------------- /utilities/meld-demos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/utilities/meld-demos.sh -------------------------------------------------------------------------------- /utilities/meld-ejb+cockpit-plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/utilities/meld-ejb+cockpit-plugin.sh -------------------------------------------------------------------------------- /utilities/meld-plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/utilities/meld-plugins.sh -------------------------------------------------------------------------------- /utilities/meld-servlet+cockpit-plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/utilities/meld-servlet+cockpit-plugin.sh -------------------------------------------------------------------------------- /utilities/meld-servlet+demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/utilities/meld-servlet+demo.sh -------------------------------------------------------------------------------- /utilities/meld-servlet+ejb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/utilities/meld-servlet+ejb.sh -------------------------------------------------------------------------------- /utilities/meld-servlet+engine-plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/utilities/meld-servlet+engine-plugin.sh -------------------------------------------------------------------------------- /utilities/meld-servlet+spring-boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/utilities/meld-servlet+spring-boot.sh -------------------------------------------------------------------------------- /utilities/meld-spring-boot-process-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/utilities/meld-spring-boot-process-tests.sh -------------------------------------------------------------------------------- /utilities/meld-spring-boots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/utilities/meld-spring-boots.sh -------------------------------------------------------------------------------- /utilities/test-demo-on-wildfly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/utilities/test-demo-on-wildfly.sh -------------------------------------------------------------------------------- /utilities/test-spring-boot-demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camunda/camunda-archetypes/HEAD/utilities/test-spring-boot-demo.sh --------------------------------------------------------------------------------