Integrate own Cockpit/Tasklist plugin in Spring-Boot webapp

Hi at all,
I want to write a tasklist plugin for my camunda spring boot application.
I found the tutorial to do it with camunda-bpm-webapp.
However I am not sure how it works for camunda-bpm-spring-boot-starter-webap.
Can anybody please help me?
Thank you :slight_smile:

1 Like

Hi @MarvinKern,

you use this example as a starting point: https://github.com/camunda-consulting/code/tree/master/snippets/springboot-customized-webapps

Hope this helps, Ingo

1 Like

Thank you @Ingo_Richtsmeier :slight_smile:
I will try the link.

So finally I found the solution how to solve my problem (pretty easy with the help of @Ingo_Richtsmeier ´s link):
With this link camunda-7-code-examples/snippets/springboot-customized-webapps at main · camunda-consulting/camunda-7-code-examples · GitHub you can learn, how to create the springboot-customized-webapp-webjar.
After this, you can follow this link https://github.com/camunda/camunda-bpm-examples/tree/master/cockpit/cockpit-sample-plugin to add a custom plugin to your project.
If you put the pieces together, you just have to add under the pom.xml in the springboot-customized-webapp-webjar following line:

<dependency>
			<groupId>org.camunda.bpm.cockpit.plugin</groupId>
			<artifactId>cockpit-sample-plugin</artifactId>
			<version>1.0-SNAPSHOT</version>
			<scope>runtime</scope>
		</dependency>

After this you should see the plugin in the cockpit section, when you run the springboot-customized-webapp-example.

Kind regards,
Marvin

1 Like

HI @MarvinKern / @Ingo_Richtsmeier https://github.com/camunda/camunda-bpm-examples/tree/master/cockpit/cockpit-sample-plugin this link is giving “page not found” any clue where it is moved ?