Skip to content

Commit

Permalink
chore(release): adjust usertask/task-form-embedded
Browse files Browse the repository at this point in the history
migrate to jakarta

Related to camunda/camunda-bpm-platform#4255
  • Loading branch information
yanavasileva committed Sep 27, 2024
1 parent a6e6bf5 commit b2c1071
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions usertask/task-form-embedded/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<name>Task Form Embedded</name>

<properties>
<version.camunda>7.22.0</version.camunda>
<version.jakarta-servlet-api>4.0.4</version.jakarta-servlet-api>
<version.camunda>7.22.0-alpha6</version.camunda>
<version.jakarta-servlet-api>6.0.0</version.jakarta-servlet-api>
<maven.compiler.release>11</maven.compiler.release>
<maven.war-plugin.version>3.3.2</maven.war-plugin.version>
<maven.compiler.version>3.11.0</maven.compiler.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@
*/
package org.camunda.bpm.quickstart.usertask;

import javax.servlet.ServletContextListener;
import jakarta.servlet.ServletContextListener;

import org.camunda.bpm.application.ProcessApplication;
import org.camunda.bpm.application.impl.JakartaServletProcessApplication;
import org.camunda.bpm.application.impl.ServletProcessApplication;

/**
Expand All @@ -42,6 +43,6 @@
* deployment descriptor.</p>
*/
@ProcessApplication
public class EmbeddedTaskFormPa extends ServletProcessApplication {
public class EmbeddedTaskFormPa extends JakartaServletProcessApplication {

}

0 comments on commit b2c1071

Please sign in to comment.