Skip to content

Commit

Permalink
chore(clients): Make external-task-client use Tomcat 10
Browse files Browse the repository at this point in the history
  • Loading branch information
psavidis committed Jun 17, 2024
1 parent a5a0005 commit fd7a58b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions clients/java/client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<properties>
<version.httpclient>5.3</version.httpclient>
<engine.runtime>${project.build.directory}/camunda-tomcat</engine.runtime>
<tomcat.runtime>${engine.runtime}/server/apache-tomcat-${version.tomcat9}</tomcat.runtime>
<tomcat.runtime>${engine.runtime}/server/apache-tomcat-${version.tomcat}</tomcat.runtime>
<http.port>${tomcat.connector.http.port}</http.port>

<tomcat.connector.http.port>48080</tomcat.connector.http.port>
Expand Down Expand Up @@ -123,7 +123,7 @@

<dependency>
<groupId>org.camunda.bpm.tomcat</groupId>
<artifactId>camunda-tomcat-assembly</artifactId>
<artifactId>camunda-tomcat-assembly-jakarta</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
<scope>test</scope>
Expand All @@ -137,7 +137,7 @@

<dependency>
<groupId>org.camunda.bpm</groupId>
<artifactId>camunda-engine-rest</artifactId>
<artifactId>camunda-engine-rest-jakarta</artifactId>
<scope>test</scope>
<type>war</type>
<classifier>tomcat</classifier>
Expand Down Expand Up @@ -211,7 +211,7 @@
<artifactItems>
<artifactItem>
<groupId>org.camunda.bpm.tomcat</groupId>
<artifactId>camunda-tomcat-assembly</artifactId>
<artifactId>camunda-tomcat-assembly-jakarta</artifactId>
<version>${project.version}</version>
<type>tar.gz</type>
<outputDirectory>${engine.runtime}</outputDirectory>
Expand Down Expand Up @@ -262,7 +262,7 @@
<!-- Container configuration -->
<container>
<type>installed</type>
<containerId>tomcat9x</containerId>
<containerId>tomcat10x</containerId>
<append>false</append>
<home>${tomcat.runtime}</home>
<timeout>${cargo.timeout}</timeout>
Expand All @@ -288,7 +288,7 @@
<deployables>
<deployable>
<groupId>org.camunda.bpm</groupId>
<artifactId>camunda-engine-rest</artifactId>
<artifactId>camunda-engine-rest-jakarta</artifactId>
<type>war</type>
<classifier>tomcat</classifier>
<pingURL>
Expand Down
6 changes: 3 additions & 3 deletions clients/java/qa/engine-variable-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
</dependency>

<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>4.0.0</version>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>6.0.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
package org.camunda.qa;

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

/**
* @author Tassilo Weidner
*/
@ProcessApplication
public class Application extends ServletProcessApplication {
public class Application extends JakartaServletProcessApplication {

}

0 comments on commit fd7a58b

Please sign in to comment.