Skip to content

Commit

Permalink
added relocation
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanlukas committed Oct 10, 2024
1 parent ea663d4 commit 68da4b3
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 34 deletions.
74 changes: 40 additions & 34 deletions camunda-sdk-java/java-client-operate/pom.xml
Original file line number Diff line number Diff line change
@@ -1,38 +1,44 @@
<?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>io.camunda.spring</groupId>
<artifactId>camunda-sdk-java</artifactId>
<version>8.6.0-alpha1-SNAPSHOT</version>
</parent>

<artifactId>java-client-operate-legacy</artifactId>
<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>io.camunda.spring</groupId>
<artifactId>camunda-sdk-java</artifactId>
<version>8.6.0-alpha1-SNAPSHOT</version>
</parent>

<dependencies>
<dependency>
<groupId>io.camunda.spring</groupId>
<artifactId>java-common</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.camunda</groupId>
<artifactId>zeebe-bpmn-model</artifactId>
</dependency>
</dependencies>
<artifactId>java-client-operate-legacy</artifactId>

<dependencies>
<dependency>
<groupId>io.camunda.spring</groupId>
<artifactId>java-common</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.camunda</groupId>
<artifactId>zeebe-bpmn-model</artifactId>
</dependency>
</dependencies>
<distributionManagement>
<relocation>
<groupId>io.camunda.spring</groupId>
<artifactId>java-client-operate</artifactId>
</relocation>
</distributionManagement>
</project>
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -595,4 +595,11 @@
<developerConnection>scm:git:[email protected]:camunda-community-hub/spring-zeebe.git</developerConnection>
<tag>HEAD</tag>
</scm>

<distributionManagement>
<relocation>
<groupId>io.camunda</groupId>
<artifactId>spring-boot-starter-camunda-sdk</artifactId>
</relocation>
</distributionManagement>
</project>

0 comments on commit 68da4b3

Please sign in to comment.